0
我正在研究一個基於核心實體生成視圖模型的T4模板。 比如我有核心新聞類,我想這個模板來生成視圖模型,如這些在mvc4中讀取類屬性T4模板
public class News
{
public property int Id {get;set;}
public property string Title {get;set;}
public property string Content {get;set;}
}
public class NewsCreate
{
public property int Id {get;set;}
public property string Title {get;set;}
public property string Content {get;set;}
}
public class NewsUpdate
{
public property int Id {get;set;}
public property string Title {get;set;}
public property string Content {get;set;}
}
現在只是這兩個。但我找不到獲得News類屬性的方法。我如何使用反射來獲取它們。 。 。
供參考;還有roslyn,它可以爲此使用text =>語法樹轉換。您也可以在T4中定義新聞的模型,並從中避免使用外部工具或反射來生成所有變體。 – FuleSnabel