c# – 在这种情况下,非泛型方法不能与类型参数一起使用是什么意思?

前端之家收集整理的这篇文章主要介绍了c# – 在这种情况下,非泛型方法不能与类型参数一起使用是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下类和方法
public class UserManager<TUser,TKey> : IDisposable
    where TUser : class,global::Microsoft.AspNet.Identity.IUser<TKey>
    where TKey : global::System.IEquatable<TKey> {

   public virtual Task<TUser> FindByIdAsync(TKey userId);

和:

private ApplicationUserManager _userManager;
    public ApplicationUserManager UserManager
    {
        get
        {
            return _userManager ?? Request.GetOwinContext().GetUserManager<ApplicationUserManager>();
        }
        set
        {
            _userManager = value;
        }
    }

public class ApplicationUserManager : UserManager<ApplicationUser,int>
public class ApplicationUser : IdentityUser<int,CustomUserLogin,CustomUserRole,CustomUserClaim>

我试图像这样调用这个方法

var user = await UserManager.FindByIdAsync<ApplicationUser,int>(99);

它给了我错误

非通用方法

‘Microsoft.AspNet.Identity.UserManager.FindByIdAsync(int)’
cannot be used with type arguments

解决方法

正如错误所述,FindByIdAsync不接受类型参数.这些存在于声明类UserManager< TUser,TKey>
var user = await UserManager.FindByIdAsync(99);
原文链接:https://www.f2er.com/csharp/98374.html

猜你在找的C#相关文章