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

    Constructors

    View Source

    DictionaryDto()

    Declaration
    public DictionaryDto()

    Fields

    View Source

    PrimaryKeyColumnName

    Declaration
    public const string PrimaryKeyColumnName = "pk"
    Field Value
    Type Description
    string
    View Source

    TableName

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

    UniqueIdColumnName

    Declaration
    public const string UniqueIdColumnName = "id"
    Field Value
    Type Description
    string

    Properties

    View Source

    Key

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

    LanguageTextDtos

    Declaration
    public List<LanguageTextDto> LanguageTextDtos { get; set; }
    Property Value
    Type Description
    List<LanguageTextDto>
    View Source

    Parent

    Declaration
    [NullSetting(NullSetting = NullSettings.Null)]
    [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
    [PrimaryKeyColumn]
    public int PrimaryKey { get; set; }
    Property Value
    Type Description
    int
    View Source

    UniqueId

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