DbExpressionBuilder.As 方法 (DbAggregate, String)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
以键/值对对象的形式返回指定参数。
命名空间: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ExtensionAttribute> _
Public Shared Function As ( _
value As DbAggregate, _
alias As String _
) As KeyValuePair(Of String, DbAggregate)
用法
Dim value As DbAggregate
Dim alias As String
Dim returnValue As KeyValuePair(Of String, DbAggregate)
returnValue = value.As(alias)
public static KeyValuePair<string, DbAggregate> As(
this DbAggregate value,
string alias
)
[ExtensionAttribute]
public:
static KeyValuePair<String^, DbAggregate^> As(
DbAggregate^ value,
String^ alias
)
static member As :
value:DbAggregate *
alias:string -> KeyValuePair<string, DbAggregate>
public static function As(
value : DbAggregate,
alias : String
) : KeyValuePair<String, DbAggregate>
参数
- value
类型:System.Data.Entity.Core.Common.CommandTrees.DbAggregate
键/值对中的值。
- alias
类型:System.String
键/值对中的键。
返回值
类型:System.Collections.Generic.KeyValuePair<String, DbAggregate>
键/值对对象。
使用说明
在 Visual Basic 和 C# 中,可以在 DbAggregate 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。
请参阅
参考
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空间