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
parent
commit
909e81f3ff
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/DistributedEvents/IncomingEventRecord.cs
  2. 4
      framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/DistributedEvents/OutgoingEventRecord.cs
  3. 4
      framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/IncomingEventRecord.cs
  4. 4
      framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/OutgoingEventRecord.cs

4
framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/DistributedEvents/IncomingEventRecord.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()

4
framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/DistributedEvents/OutgoingEventRecord.cs

@ -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()

4
framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/IncomingEventRecord.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()

4
framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/OutgoingEventRecord.cs

@ -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()

Loading…
Cancel
Save