MAUI 本地数据sqlite 报错 : Cannot update Settings: it has no PK

原因是没有设置主键,需要标记主键 [PrimaryKey]

 public class Settings
    {
        [PrimaryKey]
        public string Key { get; set; }
        public string Value { get; set; }

    }

 

posted @ 2023-08-23 13:41  亲爱的老王哥  阅读(33)  评论(0编辑  收藏  举报