我有一个实体类
public class someclass
{
public string property1 {get; set;}
public string property2 {get; set;}
public string property3 {get; set;}
}
并使用 sqlite 连接类 obj DB 我正在创建表
Db.CreateTableAsync<someclass>().GetAwaiter().GetResult();
我想要实现的是,我不希望 sqlite 在表中为property3
. 有什么办法可以做到这一点?
我正在为 Windows 商店应用程序使用 SQLiteAsync 库。