0
代碼級轉化
public class Test1
{
[Conversion("UserId")]
Public int id { get; set; }
[Conversion("UserValue")]
public int value { get; set; }
[Conversion("UserInfo")]
public List<Test2> info { get; set; }
}
public class User
{
public int UserId { get; set; }
public int UserValue { get; set; }
public List<UserInformation> UserInfo { get; set; }
}
public class Test2
{
[Conversion("UserId")]
public int id { get; set; }
[Conversion("UserName")]
public string name { get; set; }
[Conversion("UserLocation")]
public string location { get; set; }
}
public class UserInformation
{
public int UserId { get; set; }
public string UserName { get; set; }
public string UserLocation { get; set; }
}
public class ConversionAttribute
{
public string Name { get; set; }
public ConversionAttribute(string name)
{
this.Name = name;
}
}
public dynamic Convert(dynamic source, Type result)
{
var p = Activator.CreateInstance(result);
foreach (var item in source.GetType().GetProperties().Where(m => m.GetCustomAttributes(typeof(ConversionAttribute)).Count() > 0))
{
p.GetType().GetProperty(item.GetCustomAttributes(typeof(ConversionAttribute)).Cast<ConversionAttribute>().Name).Value = item.GetValue(source,null); // This should work for system types... but not for lists/custom models.
}
}
public void DoShit()
{
var t1 = new Test1 { id = 1, name = value = "Test", info = new Test2 { id = 1, name = "MyName", location = "UserLocation" } };
var obj = Convert(t1, typeof(User));
}
形勢
我一直在負責我們的數據庫模型轉換爲我們的WCF模型。它們在幾個方面有所不同,我在上面的示例代碼中已經展示了一些。
我已經設法使用Activator.CreateInstance(result)
創建實例,我可以使用source.GetType().GetProperties()
來複制所有屬性,但是對於Model(自定義類)或列表,我似乎遇到了問題。
問題
我不知道如何處理自定義類或列表(兩個系統類型藏漢定製類)。
在我以前的方法中,我使用了兩種方法,一種用於正常轉換,另一種用於列表轉換..但是我的老闆不批准它,所以我想知道是否可以使用一種方法每次使用時不檢查類型是否是列表,自定義類或系統類型
這是必須完全通用並且通過使用屬性的主要原因是因爲我們計劃在多個項目中使用此方法以及超過100個型號。
是否有一個原因,你不能重新設計你的數據庫,比使用ORM像實體框架重新導入你的模型類? – Didaxis 2013-02-20 18:25:45
我們的數據庫是完全動態的,對於一個模型字段可能意味着「名稱」,但另一個模型可能意味着「描述」 – 2013-02-21 12:49:02
如果你不想處理evry的情況分離你可以包裝你的源類型通過自定義動態對象將路由財產援助調用您的源類型。 – user629926 2013-02-21 17:50:13