Search Results for

    Show / Hide Table of Contents

    Interface IDatedEntity

    Defines a base definition for an entity with defined created and updated date.

    Namespace: MADE.Data.EFCore
    Assembly: MADE.Data.EFCore.dll
    Syntax
    public interface IDatedEntity

    Properties

    | Improve this Doc View Source

    CreatedDate

    Gets or sets the date of the entity's creation.

    Declaration
    DateTime CreatedDate { get; set; }
    Property Value
    Type Description
    DateTime
    | Improve this Doc View Source

    UpdatedDate

    Gets or sets the date of the entity's last update.

    Declaration
    DateTime? UpdatedDate { get; set; }
    Property Value
    Type Description
    System.Nullable<DateTime>

    Extension Methods

    ReflectionExtensions.GetPropertyValue<T>(Object, String)
    ReflectionExtensions.GetPropertyNames(Object)
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright (c) MADE Apps