View Source
Class ContentNuDto
Assembly: Umbraco.Infrastructure.dll
Syntax
public class ContentNuDto
Constructors
View Source
ContentNuDto()
Declaration
Fields
View Source
NodeIdColumnName
Declaration
public const string NodeIdColumnName = "nodeId"
Field Value
View Source
PrimaryKeyColumnName
Declaration
[Obsolete("Use NodeIdColumnName instead. Scheduled for removal in Umbraco 18.")]
public const string PrimaryKeyColumnName = "nodeId"
Field Value
View Source
TableName
Declaration
public const string TableName = "cmsContentNu"
Field Value
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
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
View Source
Published
Declaration
[Index(IndexTypes.NonClustered, Name = "IX_cmsContentNu_published", ForColumns = "published,nodeId,rv", IncludeColumns = "dataRaw")]
public bool Published { get; set; }
Property Value
View Source
RawData
Declaration
[NullSetting(NullSetting = NullSettings.Null)]
public byte[]? RawData { get; set; }
Property Value
View Source
Rv
Declaration
public long Rv { get; set; }
Property Value