我正在创建一个Sqlite数据库Android但在核心PCL中编写代码
SQLiteConnection dbConn;
#region Constructor
public CreateTableService()
{
dbConn = new SQLiteConnection(CommonCodes.getSqliteAndroidPath());
//Creating Tables
CreateTables();
}
#endregion
public static string getSqliteAndroidPath()
{
var filepath = Mvx.Resolve<IMvxFileStore>();
return filepath.NativePath(Constants.DbStella);
}