Merge pull request #18406 from abpframework/fix-outbox-configure

fix outbox event model builder configuration for MongoDB
pull/18411/head
liangshiwei 2 years ago committed by GitHub
commit 535443c13c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,7 +9,7 @@ public static class EventOutboxMongoModelBuilderExtensions
{
Check.NotNull(builder, nameof(builder));
builder.Entity<IncomingEventRecord>(b =>
builder.Entity<OutgoingEventRecord>(b =>
{
b.CollectionName = AbpCommonDbProperties.DbTablePrefix + "EventOutbox";
});

Loading…
Cancel
Save