-1
我在我的項目中處理數據層,我需要在xml和數據庫中爲存儲的數據創建映射器。最佳做法是什麼?我應該使用Mapper設計模式還是更好的解決方案?將數據庫和XML映射到對象的最佳實踐
例如:
public class Task
{
public int Id { get; set; }
public string Name { get; set; }
public string Text { get; set; }
public DateTime Deadline { get; set; }
public int EnteredEmployeeId { get; set; }
public int ResponsibleEmployeeId { get; set; }
public int StateId { get; set; }
public int DefficultyId { get; set; }
}
這是我的實體。 mappers將如何看起來像?謝謝
對不起,但這對Stack Overflow來說太廣泛了。本網站是針對特定的編程問題,而不是針對設計建議和一般建議。 –