0

使用NHibernate可以将表中的列映射到对象集合。NHibernate - 是否有可能将列映射到集合复合对象

例如,如果我有这样的列一个非常糟糕的设计数据库表: 的ClientID CLIENTNAME First_AmountPaid Second_AmountPaid Third_AmountPaid Fourth_AmountPaid

是否有可能这个地方通过映射到下面的类结构First_AmountPaid Fourth_AmountPaid有自己的类实现吗?

public class Client 
{ 
    public int ClientId { get; set; } 
    public string ClientName { get; set; } 

    public IList<AmountPaid> Amounts { get; set; } 
} 

public class AmountPaid 
{ 
    public decimal Amount { get; set; } 
} 

public class FirstAmountPaid : AmountPaid{ } 
public class SecondAmountPaid : AmountPaid{ } 
public class ThirdAmountPaid : AmountPaid{ } 
public class FourthAmountPaid : AmountPaid{ } 

因此给出更有意义的代码结构。

谢谢

回答

0

我不知道为什么有子类时listposition已经定义了大量的订单

Map(x => x.Amounts) 
    .Columns.Add("First_AmountPaid", "Second_AmountPaid", "Third_AmountPaid", "Fourth_AmountPaid") 
    .CustomType<AmountPaidType>(); 

class AmountPaid : IUserType 
{ 
    public object Assemble(object cached, object owner) 
    { 
     return cached; 
    } 

    public object DeepCopy(object value) 
    { 
     return ((IList<AmountPaid>)x).Select(a => a.Clone()).ToList(); 
    } 

    public object Disassemble(object value) 
    { 
     return value; 
    } 

    bool IUserType.Equals(object x, object y) 
    { 
     // assuming AmountPaid implements Equals 
     return ((IList<AmountPaid>)x).SequenceEquals((IList<AmountPaid>)y); 
    } 

    public int GetHashCode(object x) 
    { 
     return x.GetHashCode(); 
    } 

    public bool IsMutable 
    { 
     get { return true; } 
    } 

    public void NullSafeSet(cmd, value, index) 
    { 
     var list = (IList<AmountPaid>)value; 
     NHibernateUtil.Double.NullSafeSet(cmd, list[0].Amount, index); 
     NHibernateUtil.Double.NullSafeSet(cmd, list[1].Amount, index + 1); 
     NHibernateUtil.Double.NullSafeSet(cmd, list[2].Amount, index + 2); 
     NHibernateUtil.Double.NullSafeSet(cmd, list[3].Amount, index + 3); 
    } 

    public object NullSafeGet(rs, names, owner) 
    { 
     var list = new List<AmountPaid>(); 
     foreach (var name in names) 
     { 
      list.Add(new AmountPaid((double)NHibernateUtil.Double.Get(rs, name))); 
     } 
     return list; 
    } 

    public object Replace(object original, object target, object owner) 
    { 
     return original; 
    } 

    public Type ReturnedType 
    { 
     get { return typeof(IList<AmountPaid>); } 
    } 

    public SqlType[] SqlTypes 
    { 
     get { return new[] { SqlTypeFactory.Double, SqlTypeFactory.Double, SqlTypeFactory.Double, SqlTypeFactory.Double }; } 
    } 
}