实体框架和 SQL CE GUID 作为 PK

发布于 2024-12-02 21:32:32 字数 426 浏览 2 评论 0原文

可能的重复:
GUID 是否 100% 都是唯一的?

我'我使用 GUID 作为 SQL CE 3.5 数据库中表的主键列,我正在使用实体框架对其执行 CRUD 操作。

当我创建 ID 时,我将它们设置为

configuration.Id = Guid.NewGuid();

Guid 有多独特?这是一个相当大的字符串,Guid.NewGuid() 是否有可能返回一个已使用的值?

Possible Duplicate:
Is a GUID unique 100% of the time?

I'm using GUID as my primary key columns for tables in a SQL CE 3.5 database that I'm performing CRUD operations on using Entity Framework.

When I create my id's I set them as

configuration.Id = Guid.NewGuid();

How unique is Guid? It's a pretty big string, is there any possibility that Guid.NewGuid() could return a value that it already used?

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

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

发布评论

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

评论(1

梦回旧景 2024-12-09 21:32:32

从技术上来说这是可能的,但不太可能您不必担心

请注意,Guid.NewGuid 对数据库索引聚类并不友好。我确实设计了一个用于移动设备的梳理GUID 如果有帮助的话,请回到当天。

It is technically possible, but so unlikely that you don't have to worry about it.

Note that Guid.NewGuid is not kind to database index clustering. I did design a combed GUID for use on mobile devices back in the day if that helps.

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