Hi All,
I am using Entity model (4.0) and SQL server.
DB i have a column "source" type as binary(20) and it accepts
NULL.
implemented edmx my auto generated code is
if (!other.source.SequenceEqual(this.source))
{
return false;
}
Here my question is auto generated edmx code is not checking null but my DB column accepts nulls.
if other.source is null it throws error here other.source .SequenceEqual(this.source)
is it entity framework problem?
do we have any solution for this except directly editing generated file or giving default values.
Regards,
Sekhar
Go to the complete details ...