Search Results for

    Show / Hide Table of Contents
    View Source

    Class User2ClientIdDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    ClientId

    Declaration
    [Column("clientId")]
    [Length(255)]
    public string? ClientId { get; set; }
    Property Value
    Type Description
    string
    View Source

    UserId

    Declaration
    [Column("userId")]
    [PrimaryKeyColumn(AutoIncrement = false, Name = "PK_umbracoUser2ClientId", OnColumns = "userId, clientId")]
    [ForeignKey(typeof(UserDto))]
    public int UserId { 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