I'm migrating an ASP.NET website from the old Membership provider to ASP.NET Identity 2

I noticed that user registration and last logged on time are not recorded with the new provider. Is there a way to customizing the code to do that?

5

1 Answer

To capture registration date and last login date you'll need to extend user object:

public class ApplicationUser : IdentityUser { public virtual DateTime? LastLoginTime { get; set; } public virtual DateTime? RegistrationDate { get; set; } // other properties } 

And then on user creation, you'll have to populate RegistrationDate field. And on every successful login you'll have to update LastLoginTime.

And no, Identity does not support these fields automatically, you'll have to work around your requirements yourself.

4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy