Hello,
In ASP.NET Identity 2.0, I am trying to extend the build-in Users Class to link to my person table. There is a
similar thread here, but he does not share his solution.
Here is how i extended the aspnetuser table:
namespace CAVU.DAL
{
public class ApplicationUser : IdentityUser
{
public virtual Person Person { get; set; }
}
........
}
In my controller, I want to do something like this:
var db = new myContext();
var users = db.Users.Include(p => p.Person);
Here is my Error:
Go to the complete details ...