Entity Framework Code First - 更改表列排序规则
我正在使用实体框架 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
模型构建器不允许这样做,但您可以创建自定义数据库初始值设定项并执行 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.几年后:
Some years later: