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 }; } 
    } 
} 
相關問題