C#. What “The type T must be a reference type in order to use it as parameter.” means?

泪湿孤枕 提交于 2019-12-05 01:14:31

If you look at the definition of Db<TEntity>:

public class DbSet<TEntity> : DbQuery<TEntity>, IDbSet<TEntity>, IQueryable<TEntity>, IEnumerable<TEntity>, IQueryable, IEnumerable, IInternalSetAdapter 
where TEntity : class

Because it has a type constraint that the generic type must be a class then you must initialize it with a type that also matches this condition:

public class GenericRecordController<T> : Controller where T : class
{ ... }

They apparently have a constraint on the generic type.

All you need to change is:

public class GenericRecordController<T> : Controller where T : class

This tells the compiler that only reference types may be supplied as a type for T.

You can do it on just a method as well:

        public bool HasKey<T>(T obj) where T : class
        {
            return _db.Entry<T>(obj).IsKeySet;
        }

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!