User Entities
Defining User Entities
public class UserConfiguration : IHaveOwner<string>
{
public string Id { get; set; }
public string UserId { get; set; }
string IHaveOwner<string>.OwnerKey => UserId;
public string ConfigurationKey { get; set; }
public string ConfigurationValue { get; set; }
}Using User Entities Repository
Accessing the Current User at Runtime
Entity Framework Core User Entities Repository
Last updated