我正在关注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
答案 0 :(得分:1)
请改用以下内容:
public RandomThoughtDatabase () { _connection = DependencyService.Get<ISQLite>().GetConnection(); }