-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodels EFChangeHistory
RaidMax edited this page May 21, 2023
·
1 revision
This class models the change to different entities
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Models
Data.Models.EFChangeHistory[[EFChangeHistory]]
Data.Models.SharedEntity[[SharedEntity]]
end
Data.Models.SharedEntity --> Data.Models.EFChangeHistory
Type | Name | Methods |
---|---|---|
int |
ChangeHistoryId |
get, set |
string |
Comment |
get, set |
string |
CurrentValue |
get, set |
Nullable <int > |
ImpersonationEntityId |
get, set |
int |
OriginEntityId |
get, set |
string |
PreviousValue |
get, set |
int |
TargetEntityId |
get, set |
DateTime |
TimeChanged |
get, set |
ChangeType |
TypeOfChange |
get, set |
This class models the change to different entities
ChangeType
public EFChangeHistory()
public int ChangeHistoryId { get; set; }
public int OriginEntityId { get; set; }
public int TargetEntityId { get; set; }
public Nullable<int> ImpersonationEntityId { get; set; }
public ChangeType TypeOfChange { get; set; }
public DateTime TimeChanged { get; set; }
public string Comment { get; set; }
public string PreviousValue { get; set; }
public string CurrentValue { get; set; }
Generated with ModularDoc