Search Results for

    Show / Hide Table of Contents
    View Source

    Class DocumentVersionDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    Assembly: Umbraco.Infrastructure.dll
    Syntax
    [TableName("umbracoDocumentVersion")]
    [PrimaryKey("id", AutoIncrement = false)]
    [ExplicitColumns]
    public class DocumentVersionDto

    Fields

    View Source

    TableName

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

    Properties

    View Source

    ContentVersionDto

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

    Id

    Declaration
    [Column("id")]
    [PrimaryKeyColumn(AutoIncrement = false)]
    [ForeignKey(typeof(ContentVersionDto))]
    [Index(IndexTypes.NonClustered, Name = "IX_umbracoDocumentVersion_id_published", ForColumns = "id,published", IncludeColumns = "templateId")]
    public int Id { get; set; }
    Property Value
    Type Description
    int
    View Source

    Published

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

    TemplateId

    Declaration
    [Column("templateId")]
    [ForeignKey(typeof(TemplateDto), Column = "nodeId")]
    public int? TemplateId { get; set; }
    Property Value
    Type Description
    int?
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX