我試圖通過電子郵件確認爲我的Web應用程序實現註冊過程。我正在使用IdentityServer3.AspNetIdentity服務。如何擴展Microsoft.AspNet.Identity.IUser <TKey>
public class AspNetIdentityUserService<TUser, TKey> : UserServiceBase
where TUser : class, Microsoft.AspNet.Identity.IUser<TKey>, new()
where TKey : IEquatable<TKey>
{
我的問題是TUSER這需要Microsoft.AspNet.Identity.IUser接口。在我實現的函數中,傳入的用戶上下文是正確的,但我無法訪問在以下兩個圖像中可以看到的所有屬性。
http://img5.fotos-hochladen.net/uploads/b6aa42c662dd1kv063h4g5p.png http://img5.fotos-hochladen.net/uploads/d75b1e6462dd1wi9clqj6e7.png
你知道我怎麼能Microsoft.AspNet.Identity.IUser延伸到我有機會獲得姓氏和名字屬性的效果?
您應該創建自己的用戶類並將其作爲類型參數傳遞。 – SLaks