我的课程定义如下
public class blog
{
public int Id { get; set; }
public string Title { get; set; }
public DateTime CreateTime { get; set; }
// a list of author's info including author's id, name, department
public List<Tuple<int, string, string>> Authors { get; set; }
}
我不知道是否有任何存在的ORM解决方案可以为我做List<Tuple<int, string, string>>
数据库映射?我大量使用并尝试使用NHibernate&amp; EF 4.3解决了这个问题,但到目前为止还没有实现。
请不要认为如果它是正确的,我会使用List<Tuple<int, string, string>>
来表示类似作者信息的类型。