Table of Contents

Class UserRoleClaimMappingModel

Namespace
OpenSettings.Domains.Sql.Entities
Assembly
OpenSettings.dll

Represents a user role-claim mapping entity.

[Table("UserRoleClaimMappings")]
public class UserRoleClaimMappingModel : EntityBase<int>
Inheritance
UserRoleClaimMappingModel
Inherited Members

Properties

Claim

The user claim associated with this mapping.

public virtual UserClaimSqlModel Claim { get; set; }

Property Value

UserClaimSqlModel

ClaimId

The id of the associated user claim.

public int ClaimId { get; set; }

Property Value

int

CreatedBy

The user who created this user role-claim mapping.

[ForeignKey("CreatedById")]
public virtual UserSqlModel CreatedBy { get; set; }

Property Value

UserSqlModel

CreatedById

The id of the user who created this user role-claim.

public Guid? CreatedById { get; set; }

Property Value

Guid?

Id

[NotMapped]
public int Id { get; set; }

Property Value

int

Role

The user role associated with this mapping.

public virtual UserRoleSqlModel Role { get; set; }

Property Value

UserRoleSqlModel

RoleId

The id of the associated user role.

public int RoleId { get; set; }

Property Value

int

UpdatedOn

[NotMapped]
public DateTime? UpdatedOn { get; set; }

Property Value

DateTime?