在我的應用程序中,我使用的是舊的SQLite插件。 由於MVVMCross 3.0.14此版本已被棄用,並建議使用Community.Sqlite插件。如何在MVVMCross中使用Community SQLite插件
社區插件是通過Nuget添加的。
當試圖使用該插件沒有引導程序,在運行時出現錯誤:
Failed to resolve parameter for parameter connectionFactory of type ISQLiteConnectionFactory when creating...
當試圖使用該插件與引導程序,還可在運行時,我得到的錯誤:
plugin not registered for type Cirrious.MvvmCross.Community.Plugins.Sqlite
該插件應該如何使用?
CNC中 這是我的引導程序代碼:
using Cirrious.MvvmCross.Community.Plugins.Sqlite;
public class SqlitePluginBootstrap : MvxPluginBootstrapAction<PluginLoader>
{
}
對我來說,它只是簡單地用社區等價物(3.0.14-beta2)替代折舊插件。請發佈您的SQLite引導程序的代碼。 –
我在v3.0.13,Nuget不提供任何預發佈更新。我將添加代碼。 – Jacco