Establishes a link between DbUserProfile and DbApplicationUser, allowing for better management of user-related information and integration with ASP.NET Identity. Renames DbUser to DbUserProfile and updates related entities and configurations.
8 lines
No EOL
182 B
C#
8 lines
No EOL
182 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbApplicationUser : IdentityUser
|
|
{
|
|
public virtual DbUserProfile UserProfile { get; set; }
|
|
} |