:ASP.NET MVC&AutoMapper(移入ビューモデル親から&子ドメインオブジェクト)
public class ComponentType
{
public int ComponentTypeID { get; set; }
public string Component_Type { get; set; }
public string ComponentDesc { get; set; }
}
public class AffiliateComponentType
{
public int AffiliateComponentID { get; set; }
public int AffiliateID { get; set; }
public ComponentType ComponentType { get; set; }
public bool MandatoryComponent { get; set; }
public bool CanBeBookedStandalone { get; set; }
public int PreferenceOrder { get; set; }
}
私はNHibernateはを使用してDBからAffiliateComponentTypeのリストを取得します。今度は、AffiliateComponentTypeドメインオブジェクトのLISTからAffiliateComponentTypeView(View Model)のリストを作成しなければなりません。 AutoMapperを使ってこれをどのように達成できますか?
[Serializable]
public class AffiliateComponentTypeView
{
public int ComponentTypeID { get; set; }
public string Component_Type { get; set; }
public string ComponentDesc { get; set; }
public bool MandatoryComponent { get; set; }
public bool CanBeBookedStandalone { get; set; }
public int PreferenceOrder { get; set; }
}
おかげでダーリンを。私はあなたから提案された最初のアプローチを使用しました。どうもありがとう... – Alex