How exactly is ServiceStack OrmLite handling default and computed columns?
Specifically I'm getting the error
The column "PointsAvailable" cannot be modified because it is either a computed column or is the result of a UNION operator.
This column is configured as a computed column in an SQL Server 2008 database.
OrmLite does seem to do something with computed columns as you can add the attribute '[ServiceStack.DataAnnotations.Compute]' to a property in a model.
Stepping into the code, the function 'ToInsertRowStatement' in 'OrmLiteDialetBase.cs' is called. While that function is checking if the AutoIncrement property is set, it isn't checking if the IsComputed property is set.
I don't know if this is a bug or if I'm just using it wrong.