次のエラーを取得:ジェネリックスエラー:メソッドの型パラメータ 'T'の制約...?
Error 1 The constraints for type parameter '
T
' of method
'genericstuff.Models.MyClass.GetCount<T>(string)
' must match the constraints for type
parameter 'T
' of interface method 'genericstuff.IMyClass.GetCount<T>(string)
'. Consider
using an explicit interface implementation instead.
クラス:
public class MyClass : IMyClass
{
public int GetCount<T>(string filter)
where T : class
{
NorthwindEntities db = new NorthwindEntities();
return db.CreateObjectSet<T>().Where(filter).Count();
}
}
インターフェース:あなたの実装では、クラスにあなたのTジェネリックパラメータを制限している
public interface IMyClass
{
int GetCount<T>(string filter);
}
hey Dutchie goed man – user603007
あなたは最高のワットNederlanders rond inderdaad! :) –
オハイオ州ワット・ミンダーの高校:ありがとうとにかく – user603007