Not necessary -
using IdentityUser;
using IdentityDbContext;
Instead, you need to add the following -
using Microsoft.AspNet.Identity.EntityFramework;
Make sure you have this DLL as a link, as shown below. If it is not available, you can get this nuget from here .

source
share