整数?类型化属性使用 EF Code First 生成一个 0 填充列

发布于 2024-12-28 17:39:18 字数 398 浏览 0 评论 0原文

在应用程序进入生产阶段之前,我一直使用实体框架代码优先方法来生成数据库。

现在我已将以下属性添加到我的实体对象之一。

public virtual int? ClaimIncidentId { get; set; }

然后我运行 SQL 迁移来自动更新数据库,使其符合当前的实体声明。

这导致在相应的表中生成一列。列名称为 ClaimIncidentId,但为每个现有行填充的默认值是 0,而不是 null

我如何显式地让 SQL 迁移生成 null 值列。除了实际值之外,列被声明为可为空,因此理论上,它应该在其中放入 null

I have a been using Entity Framework code first approach to generate a DB before the application went into a production phase.

Now I have added to following property to one of my entity objects.

public virtual int? ClaimIncidentId { get; set; }

Then I ran the SQL Migrations to automatically update the database so it would conform with the current entity declarations.

This has resulted in generation of a Column in the corresponding table. The column name is ClaimIncidentId, but the default value, that got populated for each existing row was 0, not null.

How could I have explicitly let the SQL Migrations to generate a null valued column. Other then an actual value, column is decleared as nullable, so theoretically, it should have put nulls in it.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文