Search Results for

    Show / Hide Table of Contents
    View Source

    Class LanguageTextDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    LanguageId

    Declaration
    [Column("languageId")]
    [ForeignKey(typeof(LanguageDto), Column = "id")]
    [Index(IndexTypes.UniqueNonClustered, Name = "IX_cmsLanguageText_languageId", ForColumns = "languageId,UniqueId")]
    public int LanguageId { get; set; }
    Property Value
    Type Description
    int
    View Source

    PrimaryKey

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

    UniqueId

    Declaration
    [Column("UniqueId")]
    [ForeignKey(typeof(DictionaryDto), Column = "id")]
    public Guid UniqueId { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    Value

    Declaration
    [Column("value")]
    [Length(1000)]
    public string Value { get; set; }
    Property Value
    Type Description
    string
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX