Table of Contents

Class EfCoreTracedAggregateEntityOptions

Namespace
Savvyio.Extensions.EFCore.Domain.EventSourcing
Assembly
Savvyio.Extensions.EFCore.Domain.EventSourcing.dll

Configuration options for EfCoreTracedAggregateEntity<TEntity, TKey>.

public class EfCoreTracedAggregateEntityOptions : IParameterObject
Inheritance
EfCoreTracedAggregateEntityOptions
Implements

Constructors

EfCoreTracedAggregateEntityOptions()

Initializes a new instance of the EfCoreTracedAggregateEntityOptions class.

public EfCoreTracedAggregateEntityOptions()

Remarks

The following table shows the initial property values for an instance of EfCoreTracedAggregateEntityOptions.

PropertyInitial Value
TableNameDomainEvents
CompositePrimaryKeyIdColumnNameid
CompositePrimaryKeyIdColumnTypeuniqueidentifier
CompositePrimaryKeyVersionColumnNameversion
CompositePrimaryKeyVersionColumnTypeint
TimestampColumnNametimestamp
TimestampColumnTypedatetime
TypeColumnNametype
TypeColumnTypevarchar(1024)
PayloadColumnNamepayload
PayloadColumnTypevarchar(max)

Properties

CompositePrimaryKeyIdColumnName

Gets or sets the identifier part of the composite PK column name of the Event Sourcing schema.

public string CompositePrimaryKeyIdColumnName { get; set; }

Property Value

string

The identifier part of the composite PK column name of the Event Sourcing schema.

CompositePrimaryKeyIdColumnType

Gets or sets the identifier part composite PK column type of the Event Sourcing schema.

public string CompositePrimaryKeyIdColumnType { get; set; }

Property Value

string

The identifier part of the composite PK column type of the Event Sourcing schema.

CompositePrimaryKeyVersionColumnName

Gets or sets the version part of the composite PK column name of the Event Sourcing schema.

public string CompositePrimaryKeyVersionColumnName { get; set; }

Property Value

string

The version part of the composite PK column name of the Event Sourcing schema.

CompositePrimaryKeyVersionColumnType

Gets or sets the version part composite PK column type of the Event Sourcing schema.

public string CompositePrimaryKeyVersionColumnType { get; set; }

Property Value

string

The version part of the composite PK column type of the Event Sourcing schema.

PayloadColumnName

Gets or sets the payload (serialized data) column name of the Event Sourcing schema.

public string PayloadColumnName { get; set; }

Property Value

string

The payload (serialized data) column name of the Event Sourcing schema.

PayloadColumnType

Gets or sets the payload (serialized data) column type of the Event Sourcing schema.

public string PayloadColumnType { get; set; }

Property Value

string

The payload (serialized data) column type of the Event Sourcing schema.

TableName

Gets or sets the table name of the Event Sourcing schema.

public string TableName { get; set; }

Property Value

string

The table name of the Event Sourcing schema.

TimestampColumnName

Gets or sets the timestamp column name of the Event Sourcing schema.

public string TimestampColumnName { get; set; }

Property Value

string

The timestamp column name of the Event Sourcing schema.

TimestampColumnType

Gets or sets the timestamp column type of the Event Sourcing schema.

public string TimestampColumnType { get; set; }

Property Value

string

The timestamp column type of the Event Sourcing schema.

TypeColumnName

Gets or sets the CLR type column name of the Event Sourcing schema.

public string TypeColumnName { get; set; }

Property Value

string

The CLR type column name of the Event Sourcing schema.

TypeColumnType

Gets or sets the CLR type column type of the Event Sourcing schema.

public string TypeColumnType { get; set; }

Property Value

string

The CLR type column type of the Event Sourcing schema.