是否可以将列默认值设置为 SQL Server 的 NewId()?

发布于 2024-12-05 22:33:02 字数 149 浏览 1 评论 0原文

在 FluentMigrator 中,是否可以将列默认设置为函数?

具体来说,我要向已包含数据的 SQL Server 2008 表中添加一个 uniqueidentifier (Guid) 列,并且它将成为必填字段 - 是否可以将默认值设置为 NewId() 函数?

In fluentMigrator, is it possible to set a column default to a function?

Specifically, I'm adding a uniqueidentifier (Guid) column to a SQL Server 2008 table that already contains data, and it's going to be a required field - is it possible to set the default to the NewId() function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

拥抱没勇气 2024-12-12 22:33:02

NewId() 和 GetDate() 的字段默认值可通过引用 SystemMethods.NewGuidSystemMethods.CurrentDateTime 获得(至少对于 SQL Server),例如:

Create
    .Column("incomeIdGuid").OnTable("tblIncome")
    .AsGuid()
    .NotNullable()
    .WithDefaultValue(SystemMethods.NewGuid);

Field defaults for NewId() and GetDate() are available (for SQL Server at least) by referring to either SystemMethods.NewGuid or SystemMethods.CurrentDateTime, for example:

Create
    .Column("incomeIdGuid").OnTable("tblIncome")
    .AsGuid()
    .NotNullable()
    .WithDefaultValue(SystemMethods.NewGuid);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文