Ilya Belyansky

Results 12 comments of Ilya Belyansky

I just released versions 5.4.0-alpha and 6.4.0-alpha with support of string enum values. Please, check it.

The syntax for multiple actions is ``` modelBuilder.Entity() .AfterUpdate(trigger => trigger .Action(action => action.Update(...) .Action(action => action.Update(...)); ```

@MacyF, I should see the source. As I remember, there was a problem with removing the trigger in the Down() method of migration when the trigger name was not a...

Hi, I think it will be a good solution for support of such cases

All nugets will be released in the same time, so I don't think that binary compatibility is necessary

Hi, I think for each Action can be added an opportunity to pass a specific type for each trigger. It can have the next syntax ``` modelBuilder.Entity() .AfterUpdate(Action, typeof(DerivedTransaction)) ```...

EF Core allows to retrieve information about any entity by its CLR type. ```ITrigger``` already has a property ```TriggerEntityType```. This property in the base implementation ```Trigger``` sets equal to the...

@nadavbeno I got this error when used 32-bit version of python. Reinstalling to x64 solved my problem