应用程序崩溃只在iOS上使用SQLite PCL进行更新.适用于Android.有人有主意吗?
我的SQLite NuGet

在App.SqliteConnection.Update(pAssetRecovery)崩溃
public static async Task Update(Models.Model_AssetRecovery pAssetRecovery)
{
try
{
await Task.Run(() => App.SqliteConnection.Update(pAssetRecovery));
}
catch (SystemException ex)
{}
}
Run Code Online (Sandbox Code Playgroud)
模型被保存
[Table("tblAssetRecovery")]
public class Model_AssetRecovery : _Model_Base
{
[PrimaryKey, NotNull, Unique]
public string strAssetRecoveryID { get; set; }
public string strAssignmentID { get; set; }
public string strAssetID { get; set; }
public int intAssignmentIdentity { get; set; }
public int intCurrentPage { get; set; }
public int intRecoveryUsersID { get; set; }
public string strDebtorAddressID …Run Code Online (Sandbox Code Playgroud)