是否可以在 ActiveRecord 类上具有基本类型(例如 String)的 HasMany 关系,而无需创建另一个实体(例如(TodoListItem))来保存该值。
[ActiveRecord]
public class TodoList
{
[PrimaryKey]
public int Id
{
get { return _id; }
set { _id = value; }
}
[HasMany(typeof(string)]
public IList<string> Items
{
get { return _items; }
set { _items= value; }
}
}
任何人都可以帮忙吗?