I am using dapper.rainbow for inserting a record into MSSQL db. Following is my code
int? id = db.RoomTypes.Insert(roomType)
When i run my app, i am getting the below exception.
Cannot insert explicit value for identity column in table 'RoomTypes'
when IDENTITY_INSERT is set to OFF.
I think that dapper.rainbow is using the value (default value for int) for my Identity Column during the insert. This is what causing this exception. My identity column for the table RoomTypes
is auto incremented and it is also the primary key of my table.
Now, how do i stop the dapper.rainbow from using the ID column during insert.
Looking at the Dapper.Rainbow.Insert method, the method is "dumb" to the type passed in as the data parameter:
In other words, if you include the ID as a property in the parameter, then Dapper will try to insert that value into the database. And as you've seen, if you have IDENTITY_INSERT set to Off, then the insert will fail.
This means you'll need to create a new type that doesn't include your ID property to pass into the method. A few of ideas come to mind:
RoomTypes
and then just pass in the base class to theInsert
method.Insert
method with only the properties you want to insert into the database.Insert
method and remove the ID parameter before sending to theDapper