我正在使用SQLite创建字典。我的项目配置是AnyCPU。引用是nuget。
数据库在类DBRepository中创建。 创建代码:
//code to create the database
public string CreateDB()
{
var output = "";
output += "Creating Database if it doesn`t exist.";
string dbPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "ormdemo5.db3");
var db = new SQLiteConnection(dbPath);
output += "\nDatabase Created...";
return output;
}
当我的程序启动时,此方法调用mainActivity。
我尝试编译项目后更新了我的Visual Studio并得到了一个异常。
在更新之前一切都很完美。
System.DllNotFoundException:sqlite3