I am using Entity Framework 4.0
Many of our tables have a column called RowID, used by the DBA to track stuff. The column is NON NULLABLE has a database default value that maps to a function.
The problem is, the EDMX Model requires this property to have a value on the Entity, making construction of the object difficult.
I have read many posts on tweaking the EDMX and SSDL files manually to make this work. That is not feasible for our team.
Is there a better solution to this problem, other than making the column NULLABLE in the database? I don't care about getting the value back, I just want the database to be able to set it on its own.