我很努力地在我的Xamarin Android應用程序中使用Sqlite.net擴展。 我得到exeption: 不知道System.Collections.Generic.List`1 [app_name.Model.modelName] 的問題是相似的: Sqlite extension is not working as expected 和 Use SQLiteNetextensions
我正在使用SQLite-Net Extensions,並且在我對它進行一些操作之前,我想檢查一個表是否存在。這是我試過的: await this.database.ExecuteScalarAsync<int>("SELECT count(*) FROM sqlite_master WHERE type='table' AND name='{0}'", tableName).ContinueWit
您可以在標題中看到錯誤。 有我的表類:發生 public class Cars : Table
{
[NotNull]
public string name { get; set; }
[ForeignKey(typeof(Models)), NotNull]
public int model_out_id { get; set; }
[Fore
我試圖建立兩個表,並在Xamarin它們之間的關係跨plattform應用。下面是表的代碼: [Table("DetailTypes")]
public class DetailType
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Detail { get; set
我使用SQLite as a database,我有如下表,其中的作品,當我創建它: public class TodoItem
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public string Name { get; set; }
public string Notes { g
有一個Basket,它存儲List<Fruit>。每個Fruit有一個Pip。如果我保存這個關係,以後檢索時,ForeignKeyPipId具有價值,但對象Pip是null,儘管我用CascadeRead。 如果我嘗試使用上FruitListCascadeOperation.All我得到Constraint at SQLite.PreparedSqlLiteInsertCommand.Execut