DbSet.Cast<TEntity> 方法

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

返回等效泛型 DbSet<TEntity> 对象。

命名空间:  System.Data.Entity
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
Public Function Cast(Of TEntity As Class) As DbSet(Of TEntity)
用法
Dim instance As DbSet 
Dim returnValue As DbSet(Of TEntity)

returnValue = instance.Cast()
public DbSet<TEntity> Cast<TEntity>()
where TEntity : class
public:
generic<typename TEntity>
where TEntity : ref class 
DbSet<TEntity>^ Cast()
member Cast : unit -> DbSet<'TEntity>  when 'TEntity : not struct
JScript does not support generic types and methods.

类型参数

  • TEntity
    已为其创建集的实体的类型。

返回值

类型:System.Data.Entity.DbSet<TEntity>
泛型集对象。

请参阅

参考

DbSet 类

System.Data.Entity 命名空间