Search Results for

    Show / Hide Table of Contents
    View Source

    Class ContentDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    ContentTypeId

    Declaration
    [Column("contentTypeId")]
    [ForeignKey(typeof(ContentTypeDto), Column = "nodeId")]
    public int ContentTypeId { get; set; }
    Property Value
    Type Description
    int
    View Source

    ContentVersionDto

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

    NodeDto

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

    NodeId

    Declaration
    [Column("nodeId")]
    [PrimaryKeyColumn(AutoIncrement = false)]
    [ForeignKey(typeof(NodeDto))]
    public int NodeId { 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