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
    public class DocumentVersionDto

    Constructors

    View Source

    DocumentVersionDto()

    Declaration
    public DocumentVersionDto()

    Fields

    View Source

    PrimaryKeyColumnName

    Declaration
    public const string PrimaryKeyColumnName = "id"
    Field Value
    Type Description
    string
    View Source

    PublishedColumnName

    Declaration
    public const string PublishedColumnName = "published"
    Field Value
    Type Description
    string
    View Source

    TableName

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

    Properties

    View Source

    ContentVersionDto

    Declaration
    public ContentVersionDto ContentVersionDto { get; set; }
    Property Value
    Type Description
    ContentVersionDto
    View Source

    Id

    Declaration
    [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
    [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
    [NullSetting(NullSetting = NullSettings.Null)]
    [ForeignKey(typeof(TemplateDto), Column = "nodeId")]
    public int? TemplateId { get; set; }
    Property Value
    Type Description
    int?
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX