Class ChangeTracking
Inheritance
System.Object
ChangeTracking
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Change.Tracking
Assembly: Simplic.Change.Tracking.dll
Syntax
public class ChangeTracking
Properties
| Improve this Doc View SourceCrudType
Gets or sets the enum, either it is a insert = 0 or update = 1 or delete =2
Declaration
public CrudType CrudType { get; set; }
Property Value
Type | Description |
---|---|
CrudType |
DataGuid
Gets or sets the data id as guid
Declaration
public Guid? DataGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
DataLong
Gets or sets the data id as long
Declaration
public long? DataLong { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
DataString
Gets or sets the data id as string
Declaration
public string DataString { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Ident
Ident serves as the unique identitifer
Declaration
public long Ident { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
JsonObject
Json string thats stores the changes
Declaration
public string JsonObject { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TableName
Gets or sets the table name of the object
Declaration
public string TableName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TimeStampChange
Gets or sets the time stamp when the crud occured
Declaration
public DateTime TimeStampChange { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
UserId
Gets or sets the user id
Declaration
public int UserId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
UserName
Gets or set the user name as string
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
System.String |