0
AutoMapper可以映射共享屬性嗎?在共享屬性上使用AutoMapper?
實體
public class Entity
{
public static string SomeProperty {get; set;}
...
...
...
}
視圖模型
public class ViewModel
{
public string SomeProperty {get; set;}
...
...
...
}
如何這些屬性共享?他們生活在兩個不相關的類中。另外,這是[AutoMapper](http://automapper.org/)你在說什麼? – Attila
是的,我正在使用該Automapper,並且我想將該實體映射到視圖模型。 – Sam