使用 Linq 生成 newsequentialid

发布于 2024-12-07 20:33:41 字数 676 浏览 0 评论 0原文

我正在向表中插入一条记录,其中 Id 的类型为 uniqueidentfier。我希望在 SQL Server 上生成该 ID,有点像使用 newsequentialid< /a>.

要插入记录,我使用 InsertOnSubmit 方法如下:

 SchedulerDataContext db = new SchedulerDataContext();
 db.Courses.InsertOnSubmit(courseDomainModel);
 db.SubmitChanges();

更新: 正如答案所述,我需要将列的“默认值或绑定”属性设置为 newid()。这是它的屏幕截图以供参考。

在此处输入图像描述

I'm inserting a record into a table where Id is of type uniqueidenfier. I would like that Id to be generated on SQL server, sort of like using newsequentialid.

To insert a record I'm using InsertOnSubmit method like so:

 SchedulerDataContext db = new SchedulerDataContext();
 db.Courses.InsertOnSubmit(courseDomainModel);
 db.SubmitChanges();

update: as the answer stated I need to set 'Default value or Binding' property of a column to newid(). Here is the screenshot of it for reference.

enter image description here

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

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

发布评论

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

评论(1

阿楠 2024-12-14 20:33:41

来自上面的 msdn-link

NEWSEQUENTIALID() 只能与 uniqueidentifier 类型的表列上的 DEFAULT 约束一起使用。

当 NEWSEQUENTIALID() 用于 DEFAULT 表达式中时,它不能与其他标量运算符组合。

NEWSEQUENTIALID() 不能在查询中引用。

这意味着您无法从 LINQ 设置它,您需要将其放在表定义中。

From the msdn-link above

NEWSEQUENTIALID() can only be used with DEFAULT constraints on table columns of type uniqueidentifier.

When NEWSEQUENTIALID() is used in DEFAULT expressions, it cannot be combined with other scalar operators.

NEWSEQUENTIALID() cannot be referenced in queries.

That means you can not set it from LINQ, you need to put it in the table definition.

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