在Xamarin PCL中进行SQLite连接时出错

时间:2017-10-12 17:33:19

标签: sqlite xamarin xamarin.forms

我正在关注Xamarin的SQLite实践教程:

https://code.tutsplus.com/tutorials/an-introduction-to-xamarinforms-and-sqlite--cms-23020

现在我被困在

public RandomThoughtDatabase()         {             _connection = DependencyService.Get“ISQLite”()。GetConnection();         }

ISQLite是PCL中的接口

它给出了这个错误

错误CS0119'DependencyService.Get(DependencyFetchTarget)'是一种方法,在给定的上下文中无效LocalStorage

1 个答案:

答案 0 :(得分:1)

请改用以下内容:

public RandomThoughtDatabase () { _connection = DependencyService.Get<ISQLite>().GetConnection(); }