Browse Source

Merge pull request #20308 from abpframework/auto-merge/prerel-8-3/2826

Merge branch dev with prerel-8.3
pull/20316/head
maliming 2 years ago
committed by GitHub
parent
commit
ca16cc8b01
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