View Source
Class DocumentDto
Assembly: Umbraco.Infrastructure.dll
Syntax
Constructors
View Source
DocumentDto()
Declaration
Fields
View Source
PrimaryKeyColumnName
Declaration
public const string PrimaryKeyColumnName = "nodeId"
Field Value
View Source
PublishedColumnName
Declaration
public const string PublishedColumnName = "published"
Field Value
View Source
TableName
Declaration
public const string TableName = "umbracoDocument"
Field Value
Properties
View Source
ContentDto
Declaration
public ContentDto ContentDto { get; set; }
Property Value
View Source
DocumentVersionDto
Declaration
public DocumentVersionDto DocumentVersionDto { get; set; }
Property Value
View Source
Edited
Declaration
public bool Edited { get; set; }
Property Value
View Source
NodeId
Declaration
[PrimaryKeyColumn(AutoIncrement = false)]
[ForeignKey(typeof(ContentDto))]
public int NodeId { get; set; }
Property Value
View Source
Published
Declaration
[Index(IndexTypes.NonClustered, Name = "IX_umbracoDocument_Published")]
public bool Published { get; set; }
Property Value
View Source
PublishedVersionDto
Declaration
public DocumentVersionDto? PublishedVersionDto { get; set; }
Property Value