I created a new Blazor project with individual accounts, then transferred the files over to the existing project. Then renamed ApplicationDbContext to: IdentityContext to distinguish from the application context. Then ran the update database command with the existing migration for identity.
10 lines
213 B
C#
10 lines
213 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace ServerManagement.Data;
|
|
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
}
|
|
|