Hi,
I have an entity which derives from a view and the view has triggers defined on it that insert into two base tables. A column of one of the base tables is an IDENTITY column and so doesn't require a value. SQL Server however is demanding a value when inserting into the view. So how can I specify a dummy value for the column upon an insert?
I don't think that LLBLGen knows that the base column is an identity. (I don't know if this makes any difference!)
The value needs to be assigned automatically because I don't have access to the code that's programming the entity.
Cheers, Ian.