Tenho a seguinte classe e gostaria de usar identity com ela:
public class User
{
public string Title { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string OfficePhone { get; set; }
public string MobilePhone { get; set; }
public string Photo { get; set; }
public bool Active { get; set; }
public DateTime RegistrationDate { get; set; }
}
O que preciso fazer ?