How to set null to a GUID property
Is there a way to set my property as null or string.empty in order to restablish the field in the database as null. No. Because it’s non-nullable. If you want it to be nullable, you have to use Nullable<Guid> – if you didn’t, there’d be no point in having Nullable<T> to start with. You’ve got … Read more