Class EventEntity
The stored entity that contains the information about an event applied to a domain entity.
Implements
Inherited Members
Namespace: Silverback.EventStore
Assembly: Silverback.EventSourcing.dll
Syntax
public abstract class EventEntity : IEventEntity
Properties
| Improve this doc View sourceClrType
Gets or sets the assembly qualified name of the event class.
Declaration
[MaxLength(500)]
public string? ClrType { get; set; }
Property Value
Type | Description |
---|---|
string |
Sequence
Gets or sets the sequence number that is used to replay the messages in the right order.
Declaration
public int Sequence { get; set; }
Property Value
Type | Description |
---|---|
int |
SerializedEvent
Gets or sets the serialized event.
Declaration
public string SerializedEvent { get; set; }
Property Value
Type | Description |
---|---|
string |
Timestamp
Gets or sets the datetime when the event occured.
Declaration
public DateTime Timestamp { get; set; }
Property Value
Type | Description |
---|---|
DateTime |