Hi,
*** Heading should read "Tables with TRIGGERS". Sorry about that.
I am using EF Core 8 on MSSQL and have a couple of tables that contains Triggers.
According to documentation I need to use HasTrigger("") to indicate to EF that the table has triggers in order to fall back to the "old way" of handing updates - https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/breaking-changes?tabs=v7#sqlserver-tables-with-triggers
What would be the correct way to handling this? Is there a flag that I should set in the designer? Or maybe another way of getting around updating a table which contains triggers?
Regards,
Joe