View Source
Class ContentDto
Assembly: Umbraco.Infrastructure.dll
Syntax
Constructors
View Source
ContentDto()
Declaration
Fields
View Source
ContentTypeIdColumnName
Declaration
public const string ContentTypeIdColumnName = "contentTypeId"
Field Value
View Source
PrimaryKeyColumnName
Declaration
public const string PrimaryKeyColumnName = "nodeId"
Field Value
View Source
TableName
Declaration
public const string TableName = "umbracoContent"
Field Value
Properties
View Source
ContentTypeId
Declaration
[ForeignKey(typeof(ContentTypeDto), Column = "nodeId")]
public int ContentTypeId { get; set; }
Property Value
View Source
ContentVersionDto
Declaration
public ContentVersionDto ContentVersionDto { get; set; }
Property Value
View Source
NodeDto
Declaration
public NodeDto NodeDto { get; set; }
Property Value
View Source
NodeId
Declaration
[PrimaryKeyColumn(AutoIncrement = false)]
[ForeignKey(typeof(NodeDto))]
public int NodeId { get; set; }
Property Value