1

我对 SQLite Xamarin 的查询有疑问

我已经安装sqlite-net-pcl 1.7.335SQLiteNetExtensions 2.0.0

报错过程如下:

我填充变量 nuevoRegistro:在此处输入图像描述

dataService.InsertOrUpdate<PointOfSaleDTODBModel>(nuevoRegistro);

我的模型 PointOfSaleDTODBModel:

在此处输入图像描述

我调用该方法并将变量 nuevoRegistro 发送给它

    public T InsertOrUpdate<T>(T model) where T : class, new()
    {
        try
        {
            var oldRecord = DataAccess.GetInstance().Find<T>(model.GetHashCode(), false);
            if (oldRecord != null)
            {
                DataAccess.GetInstance().Update(model);
            }
            else
            {
                DataAccess.GetInstance().Insert(model);
            }

            return model;
        }
        catch (Exception ex)
        {
            ex.ToString();
            return model;
        }
    }

在这一步是我遇到问题的地方

    public T Find<T>(int pk, bool WithChildren) where T : class, new()
    {
        return connection.Table<T>().FirstOrDefault(n => n.GetHashCode() == pk);
    }

得到的错误是下一个:

在此处输入图像描述

错误文本:

  • “无法编译:参数”
  • at SQLite.TableQuery1[T].CompileExpr (System.Linq.Expressions.Expression expr, System.Collections.Generic.List 1[T] queryArgs) [0x00b16] in <d1788edcec634c19b907698bb77ed371>:0 \n at SQLite.TableQuery1[T].CompileExpr (System.Linq.Expressions.Expression expr, System.Collections.Generic.List 1[T] queryArgs) [0x001fb] in <d1788edcec634c19b907698bb77ed371>:0 \n at SQLite.TableQuery1[T] .CompileExpr (System.Linq.Expressions.Expression expr, System.Collections.Generic.List 1[T] queryArgs) [0x0009d] in <d1788edcec634c19b907698bb77ed371>:0 \n at SQLite.TableQuery1[T].GenerateCommand (System.String selectionList) [0x0005f] in :0 \n 在 SQLite.TableQuery 1[T].ToList () [0x00000] in <d1788edcec634c19b907698bb77ed371>:0 \n at SQLite.TableQuery1[T].FirstOrDefault ( ) [0x00007] in :0 \n 在 SQLite.TableQuery1[T].FirstOrDefault (System.Linq.Expressions.Expression1[TDelegate] predExpr) [0x00007] in :0 \n at IDS.Helpers.DataAccess.Find[T] (System.Int32 pk, System.Boolean WithChildren) [0x0000e] 在 /Users/ingeneo/Documents/workspace/Xamarin /dms-mobile/dms-xamarin/IDS-only-login/IDS/Helpers/DataAccess.cs:120 \n 在 /Users/ingeneo/ 中的 IDS.Services.DataService.InsertOrUpdate[T](T 模型)[0x00002] Documents/workspace/Xamarin/dms-mobile/dms-xamarin/IDS-only-login/IDS/Services/DataService.cs:54`

任何帮助,谢谢

4

1 回答 1

0

以下是对您的代码的一些建议,它可能会解决问题。

  1. 使用SQLiteAsyncConnection 代替SQLiteConnection 参考官方文档

  2. 使用Id而不是HashCode获取数据。

    Database.Table<TodoItem>().Where(i => i.ID == id).FirstOrDefaultAsync();      
    
于 2021-06-23T09:08:48.530 回答