Search Results for

    Show / Hide Table of Contents
    View Source

    Class DocumentDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    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
    Type Description
    string
    View Source

    TableName

    Declaration
    public const string TableName = "umbracoDocument"
    Field Value
    Type Description
    string

    Properties

    View Source

    ContentDto

    Declaration
    [ResultColumn]
    [Reference(ReferenceType.OneToOne, ReferenceMemberName = "NodeId")]
    public ContentDto ContentDto { get; set; }
    Property Value
    Type Description
    ContentDto
    View Source

    DocumentVersionDto

    Declaration
    [ResultColumn]
    [Reference(ReferenceType.OneToOne)]
    public DocumentVersionDto DocumentVersionDto { get; set; }
    Property Value
    Type Description
    DocumentVersionDto
    View Source

    Edited

    Declaration
    [Column("edited")]
    public bool Edited { get; set; }
    Property Value
    Type Description
    bool
    View Source

    NodeId

    Declaration
    [Column("nodeId")]
    [PrimaryKeyColumn(AutoIncrement = false)]
    [ForeignKey(typeof(ContentDto))]
    public int NodeId { get; set; }
    Property Value
    Type Description
    int
    View Source

    Published

    Declaration
    [Column("published")]
    [Index(IndexTypes.NonClustered, Name = "IX_umbracoDocument_Published")]
    public bool Published { get; set; }
    Property Value
    Type Description
    bool
    View Source

    PublishedVersionDto

    Declaration
    [ResultColumn]
    [Reference(ReferenceType.OneToOne)]
    public DocumentVersionDto? PublishedVersionDto { get; set; }
    Property Value
    Type Description
    DocumentVersionDto
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX