We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
86a749f
EventFlow.EntityFramework
public static IEventFlowOptions Configure(this IEventFlowOptions options) { return options .UseEntityFrameworkReadModel<MyEntity, MyDbContext>( cfg => cfg.Include(x => x.SomeProperty) .ThenInclude(y => y.SomeOtherProperty) ); }