At some point in the life cycle of an authenticated ASP.NET request the IdentityUser
is retrieved from the backing store (either Entity Framework or otherwise). I'd like to hook into that process. The reason is that the user has some collection properties and I'd like to retrieve those as well with one call to the database (using IQueryable<T>.Include
).
Is this possible in ASP.NET identity?