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

    Constructors

    View Source

    ContentNuDto()

    Declaration
    public ContentNuDto()

    Fields

    View Source

    NodeIdColumnName

    Declaration
    public const string NodeIdColumnName = "nodeId"
    Field Value
    Type Description
    string
    View Source

    PrimaryKeyColumnName

    Declaration
    [Obsolete("Use NodeIdColumnName instead. Scheduled for removal in Umbraco 18.")]
    public const string PrimaryKeyColumnName = "nodeId"
    Field Value
    Type Description
    string
    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
    [SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
    [NullSetting(NullSetting = NullSettings.Null)]
    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
    [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
    [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
    [NullSetting(NullSetting = NullSettings.Null)]
    public byte[]? RawData { get; set; }
    Property Value
    Type Description
    byte[]
    View Source

    Rv

    Declaration
    public long Rv { get; set; }
    Property Value
    Type Description
    long
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX