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

亲爱的老王哥 / 2023-08-23 / 原文

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

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

    }