Entity Framework 6 with a Database Generated field is failing on insert. From what I've read once you mark a column as DatabaseGenerated, EF won't try to insert/update anything into that field, which is especially important in my case because the fields on the database are SQL Server computed columns and not just default values, which is what I've seen in a lot of similar questions on Stack Overflow/Google.
Column definition (using a User Defined Function in the computed column):
ALTER TABLE dbo.MyModel ADD [TotalUnits] AS ([dbo].[CalculateTotalUnits]([Id]));
EF definition:
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public decimal TotalUnits { get; private set; }
And then I'm just doing a
var myNewModel = new MyModel();
DbContext.MyModels.Add(myNewModel);
DbContext.SaveChanges();
Which gives:
System.Data.SqlClient.SqlException : Cannot insert the value NULL into column 'TotalUnits', table 'MyDatabase.dbo.MyModel'; column does not allow nulls. INSERT fails.
Why is EF trying to insert a NULL
value into a computed column, and how can I tell it not to?
NULL
) into it? In SSMS if I runINSERT INTO MyModel ([...], [TotalUnits]) VALUES ([...], NULL)
I get the expectedThe column "TotalUnits" cannot be modified because it is either a computed column or is the result of a UNION operator.
. You can't insert anything, evenNULL
, into a computed column. I'm not sure why Entity Framework would try... – Seafish[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
on top regardless of what the actual database column type is. I would expect it to just exclude that column. – Seafish