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.
12 lines
No EOL
270 B
C#
12 lines
No EOL
270 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbProductTableView
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public ICollection<DbProductTable> ProductTables { get; set; }
|
|
|
|
public ICollection<DbUserProfile> UserProfiles { get; set; }
|
|
|
|
// to do: permission types
|
|
} |