Im on a legacy system where triggers are abundant in the database.
Therefore I have an entity mapped in Fluent NHB on which I would like to enforce that only updates and selects can be performed, as there is a trigger on another table which performs the inserts into this table.
In short i want to ensure that it iss not possible to do inserts with this entity.
Something along the line .Not.Insert(), but for the entity and not a column.
Note: Triggers are often a bad choice for stuff like this, but due to the complexity i do not have the option to delete the trigger just yet.
Can this be done with Fluent NHB?