Search Results for

    Show / Hide Table of Contents
    View Source

    Class ContentNuDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    Data

    Stores serialized JSON representing the content item's property and culture name values

    Declaration
    [Column("data")]
    [SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
    public string? Data { get; set; }
    Property Value
    Type Description
    string
    Remarks

    Pretty much anything that would require a 1:M lookup is serialized here

    View Source

    NodeId

    Declaration
    [Column("nodeId")]
    [PrimaryKeyColumn(AutoIncrement = false, Name = "PK_cmsContentNu", OnColumns = "nodeId, published")]
    [ForeignKey(typeof(ContentDto), Column = "nodeId", OnDelete = Rule.Cascade)]
    public int NodeId { get; set; }
    Property Value
    Type Description
    int
    View Source

    Published

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

    RawData

    Declaration
    [Column("dataRaw")]
    public byte[]? RawData { get; set; }
    Property Value
    Type Description
    byte[]
    View Source

    Rv

    Declaration
    [Column("rv")]
    public long Rv { get; set; }
    Property Value
    Type Description
    long
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX