默认情况下在asp.net动态数据中搭建所有guid
是否有一个选项可以默认在 ASP.NET 动态数据中搭建所有 guid 列?
我知道可以通过这种方式将 ScaffoldColumn 属性设置为 true:
[MetadataType(typeof(MyEntityMetadata))]
public partial class MyEntity
{}
public partial class MyEntityMetadata
{
[ScaffoldColumn(true)]
public Nullable<global::System.Guid> DataValueG { get; set; }
}
但我不想为每个 guid 列始终指定两个附加类...
谢谢。
is there an option to scaffold all guid columns in asp.net dynamic data by default?
I know there's the possibility to set the ScaffoldColumn attribute to true in this way:
[MetadataType(typeof(MyEntityMetadata))]
public partial class MyEntity
{}
public partial class MyEntityMetadata
{
[ScaffoldColumn(true)]
public Nullable<global::System.Guid> DataValueG { get; set; }
}
but I don't want to specify always two additional classes for every guid column...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 MSDN,“您可以设置整个数据模型的scaffold为true,以公开数据库中的所有数据列...通过在Global.asax文件中将scaffold设置为true,或者通过设置将数据表中的各个数据列暴露给CRUD操作在部分类中脚手架为 true。”
From MSDN, "You can set scaffold to true for the entire data model to expose all data columns in the database ... by setting scaffold to true in the Global.asax file or expose individual data columns in a data table to CRUD operations by setting scaffold to true in the partial class."