实体框架可以创建具有非空列默认值的对象吗?
我想我在某个地方看到了一些关于能够在 EF 中生成一个对象,其中所有非空值都用通用值填充的内容。
我尝试使用 context.CreateObject
难道我这样想是错误的吗?或者我只是语法错误?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在模型设计器中,您可以在属性表上为每个字段输入默认值。
In the model designer, you can enter a default value on the property sheet for each field.
您不能将空数据保存到不可为空的列中。如果
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 forDateTime
objects, SQL server has different min value of that than the .NET.