Yes. Assuming you are using a standard implementation of the Entity Framework, you can expand ApplicationUserin a file named Models/IdentityModels.cs.
.
- (, , varbinary(max))...
public class ApplicationUser : IdentityUser
{
public byte[] Image { get; set; }
}
, EF, ...
Entity Framework 5
blob, URL- ...
public class ApplicationUser : IdentityUser
{
public string ImagePath { get; set; }
}