using Microsoft.AspNet.Identity.EntityFramework; namespace Sevomin.Models { public class UsersDbContext : IdentityDbContext { public UsersDbContext() : base("UsersConnectionString") { } } }