這裏是我的數據傳輸對象傳遞DTO,將視圖模型
public class LoadSourceDetail
{
public string LoadSourceCode { get; set; }
public string LoadSourceDesc { get; set; }
public IEnumerable<ReportingEntityDetail> ReportingEntity { get; set; }
}
public class ReportingEntityDetail
{
public string ReportingEntityCode { get; set; }
public string ReportingEntityDesc { get; set; }
}
這裏是我的ViewModel
}
我不知道如何將數據從LoadSourceDetail轉移ReportingEntity到LoadSourceViewModel ReportingEntity。我試圖從一個IEnumerable傳輸數據到另一個IEnumerable。
我用automapper爲我所有的映射和的ViewModels –
感謝您的建議,但我'想知道如何在沒有AutoMapper的情況下手動執行此操作。 –
沒問題,對我來說這將是一個帶有To()和From()方法的老式DTO。我會在那裏留下我的答案,因爲這是我現在要做的方式。 – hutchonoid