1 datamodels EFChangeHistory
RaidMax edited this page 2023-05-20 22:09:21 -05:00

EFChangeHistory Public class

Description

This class models the change to different entities

Diagram

  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

Members

Properties

Public properties

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

Details

Summary

This class models the change to different entities

Inheritance

Nested types

Enums

  • ChangeType

Constructors

EFChangeHistory

Source code

public EFChangeHistory()

Properties

ChangeHistoryId

public int ChangeHistoryId { get; set; }

OriginEntityId

public int OriginEntityId { get; set; }

TargetEntityId

public int TargetEntityId { get; set; }

ImpersonationEntityId

public Nullable<int> ImpersonationEntityId { get; set; }

TypeOfChange

public ChangeType TypeOfChange { get; set; }

TimeChanged

public DateTime TimeChanged { get; set; }

Comment

public string Comment { get; set; }

PreviousValue

public string PreviousValue { get; set; }

CurrentValue

public string CurrentValue { get; set; }

Generated with ModularDoc