如何使用T4模板获取模型属性
我正在使用 T4Scaffolding,并尝试创建自定义脚手架模板。这不是 ASP.NET 项目,也不是 MVC。
我的用户类:
public class User
{
public int Id {get;set;}
public string Name {get; set;}
}
在.cs.t4文件中,我需要获取用户属性,我尝试使用:
var propertyInfos = typeof(Model.).GetProperties(BindingFlags.Public |
BindingFlags.Static);
foreach (PropertyInfo propertyInfo in propertyInfos)
...
但它不起作用,我知道在asp.net mvc中我可以使用
foreach (ModelProperty property in GetModelProperties(Model.ViewDataType, false))
asp中正确的方法是什么。网 ???
感谢您的任何评论...
I am using T4Scaffolding, and tried to create a custom Scaffold template. It's not asp.net project, not MVC.
My user class :
public class User
{
public int Id {get;set;}
public string Name {get; set;}
}
in the .cs.t4 file , I need to get the user properties ,I tried to use:
var propertyInfos = typeof(Model.).GetProperties(BindingFlags.Public |
BindingFlags.Static);
foreach (PropertyInfo propertyInfo in propertyInfos)
...
but It did not work, I know in asp.net mvc I can use
foreach (ModelProperty property in GetModelProperties(Model.ViewDataType, false))
What's the correct method in asp.net ???
Thanks for any comment ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在传递带有属性
ViewDataType
的模型,您可以使用以下代码获取该类型的属性:希望有帮助。
Assuming you are passing a model with property
ViewDataType
you can get the properties of the type using the following code:Hope that helps.