View Source
Class DocumentDto
Assembly: Umbraco.Infrastructure.dll
Syntax
[TableName("umbracoDocument")]
[PrimaryKey("nodeId", AutoIncrement = false)]
[ExplicitColumns]
public class DocumentDto
Fields
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
[ResultColumn]
[Reference(ReferenceType.OneToOne, ReferenceMemberName = "NodeId")]
public ContentDto ContentDto { get; set; }
Property Value
View Source
DocumentVersionDto
Declaration
[ResultColumn]
[Reference(ReferenceType.OneToOne)]
public DocumentVersionDto DocumentVersionDto { get; set; }
Property Value
View Source
Edited
Declaration
[Column("edited")]
public bool Edited { get; set; }
Property Value
View Source
NodeId
Declaration
[Column("nodeId")]
[PrimaryKeyColumn(AutoIncrement = false)]
[ForeignKey(typeof(ContentDto))]
public int NodeId { get; set; }
Property Value
View Source
Published
Declaration
[Column("published")]
[Index(IndexTypes.NonClustered, Name = "IX_umbracoDocument_Published")]
public bool Published { get; set; }
Property Value
View Source
PublishedVersionDto
Declaration
[ResultColumn]
[Reference(ReferenceType.OneToOne)]
public DocumentVersionDto? PublishedVersionDto { get; set; }
Property Value