无法在 Visual Web Developer 2010 Express MVC 中更改数据库表中的列属性
当我尝试将身份规范从“否”编辑为“是”时,没有办法做到这一点。没有下拉箭头或任何编辑文本的方式。我怎样才能改变它,以便我实际上可以将值更改为“是”?
When I try to edit the Identity Specification from No to Yes there isn't a way to do so. No drop-down arrow or any way to edit the text. How can I change it so that I can actually change the value to 'Yes'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,检查您的列是否为主键(PK)。
表创建脚本也会有很大帮助。
First of all, check your column to be a primary key(PK).
Also table creation script will help a lot.
我发现问题实际上是我将数据类型设置为 nvarchar() 而不是 int。
I found that the problem was in fact that I had set the data type to a nvarchar() instead of int.