In my database, in one of the table I have a GUID column with allow nulls. I have a method with a Guid? parameter that inserts a new data row in the table. However when I say myNewRow.myGuidColumn = myGuid I get the following error: "Cannot implicitly convert type 'System.Guid?' to 'System.Guid'."
|
|
|
|
|
|
|
The ADO.NET API has some problems when it comes to handling nullable value types (i.e. it simply doesn't work correctly). We've had no end of issues with it, and so have arrived at the conclusion that it's best to manually set the value to null, e.g.
It's painful extra work that ADO.NET should handle, but it doesn't seem to do so reliably (even in 3.5 SP1). This at least works correctly. We've also seen issues with passing nullable value types to SqlParameters where the generated SQL includes the keyword |
||||||||
|
|
|
same as Greg Beech's answer
|
||
|
|
|
|
If you want to avoid working with nullable GUIDs in your c# code (personally, I often find it cumbersome to work with nullable types) you could somewhere early assign Guid.Empty to the .NET data which is null in the db. That way, you don't have to bother with all the .HasValue stuff and just check if |
||
|
|
|
or:
|
||
|
|
|
|
You can use a helper method:
|
||
|
|
|
|
OK; how is myGuidColumn defined, and how is myGuid defined? If myGuid is If myGuid is If myGuidColumn is Of course, if the column is truly nullable, you might simply want to ensure that it is |
|||
|
|
