默认情况下在asp.net动态数据中搭建所有guid

发布于 2024-12-05 21:21:21 字数 382 浏览 4 评论 0原文

是否有一个选项可以默认在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尐籹人 2024-12-12 21:21:22

来自 MSDN,“您可以设置整个数据模型的scaffold为true,以公开数据库中的所有数据列...通过在Global.asax文件中将scaffold设置为true,或者通过设置将数据表中的各个数据列暴露给CRUD操作在部分类中脚手架为 true。”

DefaultModel.RegisterContext(typeof(MyDataContext), new ContextConfiguration() { ScaffoldAllTables = 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."

DefaultModel.RegisterContext(typeof(MyDataContext), new ContextConfiguration() { ScaffoldAllTables = true });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文