Subsonic: How to exclude a table column so that its not included in the generated SQL query
- by Fleents
I need to insert a record to a table.
Subsonic builds the query something like this (as far as i know):
INSERT INTO Table1
(Title, Description, RowVersion)
VALUES
(@Title, @Description, @RowVersion)
But i want to remove the RowVersion column from the SQL query bacause its autogenerated by the sql server.
How can i do that?