Class EntityBase<TPrimaryKey>
Inheritance
System.Object
EntityBase<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 SourceCreatedBy
Declaration
public string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreatedDateTime
Declaration
public DateTime CreatedDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Id
Declaration
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public TPrimaryKey Id { get; set; }
Property Value
Type | Description |
---|---|
TPrimaryKey |
IsDeleted
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
LastModified
Declaration
public DateTime? LastModified { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
ModifiedBy
Declaration
public string ModifiedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Priority
Declaration
public int Priority { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Status
Declaration
public MixContentStatus Status { get; set; }
Property Value
Type | Description |
---|---|
MixContentStatus |