MassTransit / Automatonymous

A state machine library for .Net - 100% code - No doodleware
Apache License 2.0
736 stars 116 forks source link

Does Automatonymous support entity framework core integration? #57

Closed Alksar closed 5 years ago

Alksar commented 5 years ago

Thanks for the great library!

I see in repository NHibernateIntegration only, but I know, that with MassTransit it is possible to use ef core integration also, so does Automatonymous support entity framework core integration by itself?

phatboyg commented 5 years ago

The NHibernate integration is just to map the State property to a UserType. Since it supports using an int or string for the property that’s pretty much what you’d use for EF.

Alksar commented 5 years ago

Got it, thanks.