Represents a row from the _objects table (entity instance).
Properties
Optional workflow start date.
public DateTimeOffset? DateBegin { get; init; }
Optional workflow completion date.
public DateTimeOffset? DateComplete { get; init; }
Creation timestamp.
public DateTimeOffset DateCreate { get; init; }
Last modification timestamp.
public DateTimeOffset DateModify { get; init; }
Row hash for change tracking.
public Guid? Hash { get; init; }
Primary key.
public long Id { get; init; }
Owner user identifier.
public long IdOwner { get; init; }
Parent object identifier (for tree structures).
public long? IdParent { get; init; }
Foreign key to the defining scheme.
public long IdScheme { get; init; }
User who last modified the object.
public long IdWhoChange { get; init; }
Optional numeric key.
public long? Key { get; init; }
Display name.
public string? Name { get; init; }
Free-text note.
public string? Note { get; init; }
Inline value (for primitive schemes).
public bool? ValueBool { get; init; }
Inline binary value (for primitive schemes).
public byte[]? ValueBytes { get; init; }
Inline value (for primitive schemes).
public DateTimeOffset? ValueDatetime { get; init; }
Inline value (for primitive schemes).
public double? ValueDouble { get; init; }
Inline value (for primitive schemes).
public Guid? ValueGuid { get; init; }
Inline value (for primitive schemes).
public long? ValueLong { get; init; }
Inline value (for primitive schemes).
public decimal? ValueNumeric { get; init; }
Inline value (for primitive schemes).
public string? ValueString { get; init; }