我有这个实体
[AutoIncrement(), PrimaryKey()]
public int Id { get; set; }
public string Guid { get; set; }
public string Value { get; set; }
我正在像这样针对这个实体在数据库中创建表
connection.CreateTableAsync<MyEntity>();
这将创建一个带有varchar(140)
针对Value
属性的列的表。现在我想varchar(140)
用Text
SQLite 的数据类型替换。
我应该在属性中使用什么数据类型,Value
以便它Text
在我的 SQLite DB 表中的列中结束?