DbExpressionBuilder.CastTo 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
创建一个新的 DbCastExpression,它将强制转换运算应用于一个多态参数。
命名空间: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ExtensionAttribute> _
Public Shared Function CastTo ( _
argument As DbExpression, _
toType As TypeUsage _
) As DbCastExpression
用法
Dim argument As DbExpression
Dim toType As TypeUsage
Dim returnValue As DbCastExpression
returnValue = argument.CastTo(toType)
public static DbCastExpression CastTo(
this DbExpression argument,
TypeUsage toType
)
[ExtensionAttribute]
public:
static DbCastExpression^ CastTo(
DbExpression^ argument,
TypeUsage^ toType
)
static member CastTo :
argument:DbExpression *
toType:TypeUsage -> DbCastExpression
public static function CastTo(
argument : DbExpression,
toType : TypeUsage
) : DbCastExpression
参数
- argument
类型:System.Data.Entity.Core.Common.CommandTrees.DbExpression
应对其应用强制转换的参数。
- toType
类型:System.Data.Entity.Core.Metadata.Edm.TypeUsage
指定要强制转换为的类型的类型元数据。
返回值
类型:System.Data.Entity.Core.Common.CommandTrees.DbCastExpression
具有指定的参数和目标类型的一个新的 DbCastExpression。
使用说明
在 Visual Basic 和 C# 中,可以在 DbExpression 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。
异常
例外 | 条件 |
---|---|
ArgumentNullException | argument 或 toType 为 null。 |
ArgumentException | 指定的强制转换无效。 |
请参阅
参考
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空间