Search Results for

    Show / Hide Table of Contents
    View Source

    Class UserDataDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    Group

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

    Identifier

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

    Key

    Declaration
    [Column("key")]
    [PrimaryKeyColumn(Name = "PK_umbracoUserDataDto", AutoIncrement = false)]
    public Guid Key { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    UserKey

    Declaration
    [Column("userKey")]
    [Index(IndexTypes.NonClustered, Name = "IX_umbracoUserDataDto_UserKey_Group_Identifier", IncludeColumns = "group,identifier")]
    [ForeignKey(typeof(UserDto), Column = "key")]
    public Guid UserKey { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    Value

    Declaration
    [Column("value")]
    [SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
    public required 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