DbExpressionBuilder.GetEntityRef メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定されたエンティティの参照を構造形式で取得する新しい DbEntityRefExpression を作成します。
名前空間: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<ExtensionAttribute> _
Public Shared Function GetEntityRef ( _
argument As DbExpression _
) As DbEntityRefExpression
'使用
Dim argument As DbExpression
Dim returnValue As DbEntityRefExpression
returnValue = argument.GetEntityRef()
public static DbEntityRefExpression GetEntityRef(
this DbExpression argument
)
[ExtensionAttribute]
public:
static DbEntityRefExpression^ GetEntityRef(
DbExpression^ argument
)
static member GetEntityRef :
argument:DbExpression -> DbEntityRefExpression
public static function GetEntityRef(
argument : DbExpression
) : DbEntityRefExpression
パラメーター
- argument
型 : System.Data.Entity.Core.Common.CommandTrees.DbExpression
エンティティを表す式。 この式は、エンティティを結果型とする必要があります。
戻り値
型 : System.Data.Entity.Core.Common.CommandTrees.DbEntityRefExpression
指定されたエンティティへの参照を取得する新しい DbEntityRefExpression。
使用上の注意
Visual Basic および Visual C# では、このメソッドを、DbExpression 型のオブジェクトのインスタンス メソッドとして呼び出すことができます。インスタンス メソッド構文を使用してこのメソッドを呼び出す場合は、最初のパラメーターを省略します。詳細については、「https://msdn.microsoft.com/ja-jp/library/bb384936(v=vs.113)」または「https://msdn.microsoft.com/ja-jp/library/bb383977(v=vs.113)」を参照してください。
例外
例外 | 状態 |
---|---|
ArgumentNullException | argument が null です。 |
ArgumentException | argument の結果型がエンティティ型ではありません。 |
参照
参照
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 名前空間