应用SqlitePCL应该注意的问题

前端之家收集整理的这篇文章主要介绍了应用SqlitePCL应该注意的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果使用sqlitePCL对一个Portable的工程进行sqlite操作,记得两点:

  1. 把这个Project所在的Solution下的全部Project(至少是调用sqlitePCL的)都应用上sqlite的Nuget。

  2. 加入sqlite3.dll到工程的根目录下,属性Content & Copy Always。

不然很可能会出现下面的问题:

A sqlite Wrapper assembly for the current platform was not found. Ensure that the current project references both sqlitePCL and the following platform-specific assembly: sqlitePCL.Ext.

原文链接:https://www.f2er.com/sqlite/199740.html

猜你在找的Sqlite相关文章