共用方式為


DbExpressionBuilder.Scan 方法

[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]

建立新的 DbScanExpression,此運算式會參考指定實體或關聯性集合。

命名空間:  System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
組件:  EntityFramework (在 EntityFramework.dll 中)

語法

'宣告
<ExtensionAttribute> _
Public Shared Function Scan ( _
    targetSet As EntitySetBase _
) As DbScanExpression
'用途
Dim targetSet As EntitySetBase 
Dim returnValue As DbScanExpression 

returnValue = targetSet.Scan()
public static DbScanExpression Scan(
    this EntitySetBase targetSet
)
[ExtensionAttribute]
public:
static DbScanExpression^ Scan(
    EntitySetBase^ targetSet
)
static member Scan : 
        targetSet:EntitySetBase -> DbScanExpression
public static function Scan(
    targetSet : EntitySetBase
) : DbScanExpression

參數

傳回值

類型:System.Data.Entity.Core.Common.CommandTrees.DbScanExpression
以指定實體或關聯性集合為基礎的新 DbScanExpression。

使用注意事項

在 Visual Basic 和 C# 中,您可以在任何 EntitySetBase 類型物件中呼叫這個方法以做為執行個體。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=vs.113)https://msdn.microsoft.com/zh-tw/library/bb383977(v=vs.113)

例外狀況

例外狀況 條件
ArgumentNullException

targetSet 為 null。

請參閱

參考

DbExpressionBuilder 類別

System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空間