列表<元组<T1,T2,T3>&GT;到数据库映射</tuple <t1,t2,t3>

时间:2012-03-05 02:22:51

标签: nhibernate ado.net-entity-data-model

我的课程定义如下

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>>来表示类似作者信息的类型。

0 个答案:

没有答案