値を保持するために (TodoListItem) などの別のエンティティを作成する必要なく、ActiveRecord クラスで String などの基本型の HasMany 関係を持つことは可能ですか。
[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; }
}
}
誰でも助けることができますか?