Entity Framework Code First - 更改表列排序规则

发布于 2024-10-21 19:06:32 字数 225 浏览 1 评论 0原文

我正在使用实体框架 CTP5 和 Code First。我需要更改 SQL Server 中特定列的排序规则。我相信默认排序规则是 SQL_Latin1_General_CP1_CI_AS,但我需要将这一列排序规则更改为 SQL_Latin1_General_CP1_CS_AS (区分大小写)。

有没有办法在 Code First 中使用 ModelBuilder 来更改特定的列排序规则?

酒吧开发者

I'm using Entity Framework CTP5 and Code First. I need to change the Collation for a specific column in SQL Server. I believe the default collation is SQL_Latin1_General_CP1_CI_AS, but I need to change this one column colllation to SQL_Latin1_General_CP1_CS_AS (Case Sensitive).

Is there a way to use ModelBuilder in Code First to change a specific column collation?

BarDev

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

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

发布评论

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

评论(2

生生漫 2024-10-28 19:06:32

模型构建器不允许这样做,但您可以创建自定义数据库初始值设定项并执行 ALTER TABLE 命令。该示例与创建自定义索引的此示例相同。

Model builder doesn't allow this but you can create custom database initializer and execute ALTER TABLE command. The example will be the same as this one creating custom index.

月棠 2024-10-28 19:06:32

几年后:

modelBuilder.Entity<Order>().Property(c => c.Name).UseCollation("SQL_Latin1_General_CP1_CS_AS");

Some years later:

modelBuilder.Entity<Order>().Property(c => c.Name).UseCollation("SQL_Latin1_General_CP1_CS_AS");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文