Exemple #1
0
 public DomainEventsEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
 }
 public SerializableEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
 }
 public SurrogatePrimaryKeyEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
     _surrogateKeyType = template.ExecutionContext.Settings.GetEntityKeySettings()?.KeyType ?? "System.Guid";
 }
Exemple #4
0
 public BidirectionalOneToManyEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
 }
 public OrphanDetectionDomainEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
 }
Exemple #6
0
 public ForeignKeyEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
     Priority        = -100;
     _foreignKeyType = template.ExecutionContext.Settings.GetEntityKeySettings()?.KeyType ?? "System.Guid";
 }
 public DefaultConstructorDomainEntityDecorator(DomainEntityStateTemplate template) : base(template)
 {
 }
 public VisitableDomainEntityStateDecorator(DomainEntityStateTemplate template) : base(template)
 {
 }