コアのエンティティに基づいてビュー モデルを生成する T4 テンプレートに取り組んでいます。たとえば、コアに News クラスがあり、このテンプレートにこれらのようなビューモデルを生成させたい
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;}
}
今のところこの2つだけです。News クラスのプロパティを取得する方法が見つかりませんでした。リフレクションを使用してそれらを取得するにはどうすればよいですか。. .