如何在 C# 中的 Migrator.Framework 中添加具有默认值的新列?
我正在使用类似于以下内容的代码:
Database.AddColumn(
"TableName",
new Column(
"ColumnName",
DbType.String,
ColumnProperty.NotNull,
"TypeName"));
但我收到错误,因为在此上下文中不允许“TypeName”,允许的上下文是常量、常量表达式,但没有列名。
I am using code similar to the following:
Database.AddColumn(
"TableName",
new Column(
"ColumnName",
DbType.String,
ColumnProperty.NotNull,
"TypeName"));
But I am getting error as "TypeName" is not allowed in this context, allowed context are constants, constants expression but no column name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于字符串,您必须在默认值两边加上单引号,因为
ALTER
语句是直接使用它构建的。试试这个:For strings, you have to put single quotes around the default value as the
ALTER
statement is built with it directly. Try this:你尝试过这种方法吗?
Have you tried this way?