Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you set a field to DBNull in Entity Framework? The fields are strongly typed so you cannot set it equal to DBNull.Value and I did not find any method to set a field to DBNull. It seems like this is a necessary thing to do, but after much Google research I found nothing about it.

I am trying to set a datetime field in Entity Framework using vb.net. This requires me to write

 myEntity.mydate = Nothing

This does not set the field to null but instead sets it to the default date value which is not a valid date value in SQL Server.

share|improve this question

3 Answers

up vote 9 down vote accepted

If a column is nullable in the database the result class will have a nullable property too.

For example if a Order table has a nullable Datetime column called CreatedDate, then the resulting Order class will looks something like this:

public partial class Order: EntityObject
{
  ...
  private DateTime? _createdDate;
  ...
}

If the _createdDate has no value when you call ObjectContext.SaveChanges() a System.DBNull will automatically be sent to the database as part of insert or update command.

Hope this helps Alex

share|improve this answer
Yes that is correct Alex. The problem was on my side. A field which I thought was nullable was not. – Eric May 5 '09 at 21:50

Set the field value to null. The Entity Framework will translate this to System.DBNull.

share|improve this answer
First you should accept null values on the appropriate database field value. – Blerta May 4 '09 at 16:24
I am using vb.net which does not have Nulls. I have to use Nothing instead which sets the date to the default value instead of Null. – Eric May 4 '09 at 17:53
@Eric VB.NET "Nothing" is C#'s "null" – splattne May 5 '09 at 7:38

I never used entity-framework but can you turn a variable into a nullable type?

something like

dim entityVar as nullable(of date)

then you can do the =nothing and it will stay nothing.

but like I said, I never used entity-framework

while looking on google I found that bug report on Microsoft Connect

share|improve this answer
I set it to nullable in the model.designer.vb file but that still doesn't set it to null in the database. That bug report is similar to my problem. There must be a way to do this. You wouldn't think they would release entity framework without the ability to set database values to null in vb.net. – Eric May 4 '09 at 19:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.