Class UserClaimMappingSqlModel
- Namespace
- OpenSettings.Domains.Sql.Entities
- Assembly
- OpenSettings.dll
Represents a user-claim mapping entity.
[Table("UserClaimMappings")]
public class UserClaimMappingSqlModel : EntityBase<int>
- Inheritance
-
UserClaimMappingSqlModel
- Inherited Members
Properties
Claim
The claim associated with this mapping.
public virtual UserClaimSqlModel Claim { get; set; }
Property Value
ClaimId
The id of the associated user claim.
public int ClaimId { get; set; }
Property Value
CreatedBy
The user who created this user-claim mapping.
[ForeignKey("CreatedById")]
public virtual UserSqlModel CreatedBy { get; set; }
Property Value
CreatedById
The id of the user who created this user-claim mapping.
public Guid? CreatedById { get; set; }
Property Value
- Guid?
Id
[NotMapped]
public int Id { get; set; }
Property Value
UpdatedOn
[NotMapped]
public DateTime? UpdatedOn { get; set; }
Property Value
User
The user associated with this mapping.
public virtual UserSqlModel User { get; set; }
Property Value
UserId
The id of the associated user.
public Guid UserId { get; set; }