Show / Hide Table of Contents

    Class EventEntity

    The stored entity that contains the information about an event applied to a domain entity.

    Inheritance
    object
    EventEntity
    Implements
    IEventEntity
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Silverback.EventStore
    Assembly: Silverback.EventSourcing.dll
    Syntax
    public abstract class EventEntity : IEventEntity

    Properties

    | Improve this doc View source

    ClrType

    Gets or sets the assembly qualified name of the event class.

    Declaration
    [MaxLength(500)]
    public string? ClrType { get; set; }
    Property Value
    Type Description
    string
    | Improve this doc View source

    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
    | Improve this doc View source

    SerializedEvent

    Gets or sets the serialized event.

    Declaration
    public string SerializedEvent { get; set; }
    Property Value
    Type Description
    string
    | Improve this doc View source

    Timestamp

    Gets or sets the datetime when the event occured.

    Declaration
    public DateTime Timestamp { get; set; }
    Property Value
    Type Description
    DateTime

    Implements

    IEventEntity
    • Improve this doc
    • View source
    GitHub E-Mail
    ↑ Back to top © 2020 Sergio Aquilini