Show / Hide Table of Contents

Class EntityBase<TPrimaryKey>

Inheritance
System.Object
EntityBase<TPrimaryKey>
Implements
IEntity<TPrimaryKey>
IHasPrimaryKey<TPrimaryKey>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Mix.Heart.Entities
Assembly: mix.heart.dll
Syntax
public abstract class EntityBase<TPrimaryKey> : IEntity<TPrimaryKey>, IHasPrimaryKey<TPrimaryKey> where TPrimaryKey : IComparable
Type Parameters
Name Description
TPrimaryKey

Properties

| Improve this Doc View Source

CreatedBy

Declaration
public string CreatedBy { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

CreatedDateTime

Declaration
public DateTime CreatedDateTime { get; set; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

Id

Declaration
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public TPrimaryKey Id { get; set; }
Property Value
Type Description
TPrimaryKey
| Improve this Doc View Source

IsDeleted

Declaration
public bool IsDeleted { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

LastModified

Declaration
public DateTime? LastModified { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>
| Improve this Doc View Source

ModifiedBy

Declaration
public string ModifiedBy { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Priority

Declaration
public int Priority { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Status

Declaration
public MixContentStatus Status { get; set; }
Property Value
Type Description
MixContentStatus

Implements

IEntity<TPrimaryKey>
IHasPrimaryKey<TPrimaryKey>
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾