I've got a couple of nullable XML fields in my SQL table. When I run LLBLGen it creates an entity that maps non-nullable strings to these fields.
Is there an option to make these properties nullable?
Thanks.
.NET 2.0+ nullable dataypes are only available for value types. Reference types like strings can have a value of null by default.
Of course! Forget I said anything...
Thanks!
no prob