I do a unit test Add/Insert a data record into a table with column name Id which is an identity column.
In the unit test I manually insert the id. So I could set the Identiy_Insert to ON before the Insert statement.
Are there any drawbacks keeping this feature turned ON for the production server?
Or should I change my unit testing approach? Inserting a value for the Name field and retrieve
and ASSERT it should be prove enough that the data record got inserted for the integrations
sake.