在我的应用程序中,我使用旧的sqlite插件.
自MVVMCross 3.0.14以来,不推荐使用此版本,建议使用Community.sqlite插件. @H_403_8@ @H_403_8@社区插件是通过Nuget添加的. @H_403_8@当尝试在没有引导程序的情况下使用插件时,在运行时我收到错误: @H_403_8@
这是我的bootstrapper代码: @H_403_8@
自MVVMCross 3.0.14以来,不推荐使用此版本,建议使用Community.sqlite插件. @H_403_8@ @H_403_8@社区插件是通过Nuget添加的. @H_403_8@当尝试在没有引导程序的情况下使用插件时,在运行时我收到错误: @H_403_8@
@H_403_8@Failed to resolve parameter for parameter connectionFactory of type IsqliteConnectionFactory when creating…@H_403_8@当尝试将插件与引导程序一起使用时,也在运行时,我收到错误: @H_403_8@
@H_403_8@plugin not registered for type CirrIoUs.MvvmCross.Community.Plugins.sqlite@H_403_8@该插件应该如何使用? @H_403_8@-编辑-
这是我的bootstrapper代码: @H_403_8@
using CirrIoUs.MvvmCross.Community.Plugins.sqlite; public class sqlitePluginBootstrap : MvxPluginBootstrapAction<PluginLoader> { }
解决方法
好的,Nuget添加了对可移植库的引用.我添加了对sqlite.Touch库的引用,然后更改了我的引导程序:
@H_403_8@
@H_403_8@
using CirrIoUs.MvvmCross.Community.Plugins.sqlite; using CirrIoUs.MvvmCross.Community.Plugins.sqlite.Touch; public class sqlitePluginBootstrap : MvxLoaderPluginBootstrapAction<PluginLoader,Plugin> { }@H_403_8@这为我解决了“插件未注册”的错误.