Browse Source
Merge pull request #20307 from abpframework/auto-merge/rel-8-2/2825
Merge branch prerel-8.3 with rel-8.2
pull/20308/head
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
16 additions and
0 deletions
-
framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/DistributedEvents/IncomingEventRecord.cs
-
framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/DistributedEvents/OutgoingEventRecord.cs
-
framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/IncomingEventRecord.cs
-
framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/OutgoingEventRecord.cs
|
|
|
@ -44,6 +44,10 @@ public class IncomingEventRecord : |
|
|
|
|
|
|
|
ExtraProperties = new ExtraPropertyDictionary(); |
|
|
|
this.SetDefaultsForExtraProperties(); |
|
|
|
foreach (var property in eventInfo.ExtraProperties) |
|
|
|
{ |
|
|
|
this.SetProperty(property.Key, property.Value); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public IncomingEventInfo ToIncomingEventInfo() |
|
|
|
|
|
|
|
@ -37,6 +37,10 @@ public class OutgoingEventRecord : |
|
|
|
|
|
|
|
ExtraProperties = new ExtraPropertyDictionary(); |
|
|
|
this.SetDefaultsForExtraProperties(); |
|
|
|
foreach (var property in eventInfo.ExtraProperties) |
|
|
|
{ |
|
|
|
this.SetProperty(property.Key, property.Value); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public OutgoingEventInfo ToOutgoingEventInfo() |
|
|
|
|
|
|
|
@ -44,6 +44,10 @@ public class IncomingEventRecord : |
|
|
|
|
|
|
|
ExtraProperties = new ExtraPropertyDictionary(); |
|
|
|
this.SetDefaultsForExtraProperties(); |
|
|
|
foreach (var property in eventInfo.ExtraProperties) |
|
|
|
{ |
|
|
|
this.SetProperty(property.Key, property.Value); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public IncomingEventInfo ToIncomingEventInfo() |
|
|
|
|
|
|
|
@ -37,6 +37,10 @@ public class OutgoingEventRecord : |
|
|
|
|
|
|
|
ExtraProperties = new ExtraPropertyDictionary(); |
|
|
|
this.SetDefaultsForExtraProperties(); |
|
|
|
foreach (var property in eventInfo.ExtraProperties) |
|
|
|
{ |
|
|
|
this.SetProperty(property.Key, property.Value); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public OutgoingEventInfo ToOutgoingEventInfo() |
|
|
|
|