实体框架可以创建具有非空列默认值的对象吗?

发布于 2024-12-09 08:12:25 字数 175 浏览 2 评论 0原文

我想我在某个地方看到了一些关于能够在 EF 中生成一个对象,其中所有非空值都用通用值填充的内容。

我尝试使用 context.CreateObject(),但是我仍然收到有关尝试将 NULL 数据保存到非空列的错误。

难道我这样想是错误的吗?或者我只是语法错误?

I thought I saw something somewhere about being able to generate an object in EF with all the non-null values filled in with generic values.

I tried using context.CreateObject<MyEntity>(), however I am still getting errors about trying to save NULL data to a non-null column.

Was I mistaken in thinking this? Or do I just have the wrong syntax?

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

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

发布评论

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

评论(2

烦人精 2024-12-16 08:12:25

在模型设计器中,您可以在属性表上为每个字段输入默认值。

在此处输入图像描述

In the model designer, you can enter a default value on the property sheet for each field.

enter image description here

幻梦 2024-12-16 08:12:25

您不能将空数据保存到不可为空的列中。如果 CreateObject 方法告诉您,您需要在尝试保存数据之前更改它。另外,请注意 DateTime 对象,SQL Server 的最小值与 .NET 不同。

You can not save null data to a non-nullable column. If CreateObject method gives you that you'll need to change that before trying to save data. Also, watch out for DateTime objects, SQL server has different min value of that than the .NET.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文