Entity Framework 6 Code First Trigger
Entity Framework has no support for triggers, although you can certainly manually execute a statement that would create a trigger, but you would need to do this after the table was created (if using migrations). You can use the technique specified by Ladislav in EF 4.1 code-first adding a trigger to a table Take note … Read more