I am using Entity Framework 4.0
Many of our tables have a RowID column used by the database administrator to track material. The NON NULLABLE column has a default value for the database that is displayed in the function.
The problem is that for the EDMX model, this property has a value for Entity, which complicates the construction of the object.
I read a lot of posts about setting up EDMX and SSDL files manually to make this work. This is not possible for our team.
Is there a better solution to this problem besides creating a NULLABLE column in the database? I donβt care about returning the value, I just want the database to be able to install it itself.
ctorx
source share