Search Results for

    Show / Hide Table of Contents
    View Source

    Class DictionaryDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    Assembly: Umbraco.Infrastructure.dll
    Syntax
    [TableName("cmsDictionary")]
    [PrimaryKey("pk")]
    [ExplicitColumns]
    public class DictionaryDto

    Fields

    View Source

    TableName

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

    Properties

    View Source

    Key

    Declaration
    [Column("key")]
    [Length(450)]
    [Index(IndexTypes.UniqueNonClustered, Name = "IX_cmsDictionary_key")]
    public string Key { get; set; }
    Property Value
    Type Description
    string
    View Source

    LanguageTextDtos

    Declaration
    [ResultColumn]
    [Reference(ReferenceType.Many, ColumnName = "UniqueId", ReferenceMemberName = "UniqueId")]
    public List<LanguageTextDto> LanguageTextDtos { get; set; }
    Property Value
    Type Description
    List<LanguageTextDto>
    View Source

    Parent

    Declaration
    [Column("parent")]
    [ForeignKey(typeof(DictionaryDto), Column = "id")]
    [Index(IndexTypes.NonClustered, Name = "IX_cmsDictionary_Parent")]
    public Guid? Parent { get; set; }
    Property Value
    Type Description
    Guid?
    View Source

    PrimaryKey

    Declaration
    [Column("pk")]
    [PrimaryKeyColumn]
    public int PrimaryKey { get; set; }
    Property Value
    Type Description
    int
    View Source

    UniqueId

    Declaration
    [Column("id")]
    [Index(IndexTypes.UniqueNonClustered)]
    public Guid UniqueId { get; set; }
    Property Value
    Type Description
    Guid
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX