Ilya Belyansky

Results 12 comments of Ilya Belyansky

You can try something like ``` modelBuilder.Entity() .AfterUpdate(trigger => trigger .Condition(refs => refs.Old.Column1 != refs.New.Column1) .ExecuteRawSql("some sql")); ```

I investigated ways to add additional parameters with the real CLR type in triggers and came to the conclusion that is too hard. All expressions that pass to triggers should...