原因是没有设置主键,需要标记主键 [PrimaryKey]
public class Settings { [PrimaryKey] public string Key { get; set; } public string Value { get; set; } }