Search Results for

    Show / Hide Table of Contents
    View Source

    Class DataTypeDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    Configuration

    Declaration
    [Column("config")]
    [SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
    public string? Configuration { get; set; }
    Property Value
    Type Description
    string
    View Source

    DbType

    Declaration
    [Column("dbType")]
    [Length(50)]
    public string DbType { get; set; }
    Property Value
    Type Description
    string
    View Source

    EditorAlias

    Declaration
    [Column("propertyEditorAlias")]
    public string EditorAlias { get; set; }
    Property Value
    Type Description
    string
    View Source

    EditorUiAlias

    Declaration
    [Column("propertyEditorUiAlias")]
    public string? EditorUiAlias { get; set; }
    Property Value
    Type Description
    string
    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