ASP.NET MVC 5 - IdentityUser in WCF?
问题 I am currently writing a WCF service that will use ASP.NET Identity to perform all membership and claims related stuff. (That is, authentication, registration, and all will be performed by calling this WCF) [DataContract(IsReference=true)] public class ApplicationUser: IdentityUser { [DataMember] public string FirstName { get; set; } [DataMember] public string LastName { get; set; } [DataMember] public string Email { get; set; } } The problem is that "IdentityUser" is a class in Microsoft