ObjectQuery<T>.Intersect 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
此查詢產生器方法會建立新查詢,其結果是同時在此查詢和另一個所指定查詢中的結果。
命名空間: System.Data.Entity.Core.Objects
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public Function Intersect ( _
query As ObjectQuery(Of T) _
) As ObjectQuery(Of T)
'用途
Dim instance As ObjectQuery
Dim query As ObjectQuery(Of T)
Dim returnValue As ObjectQuery(Of T)
returnValue = instance.Intersect(query)
public ObjectQuery<T> Intersect(
ObjectQuery<T> query
)
public:
ObjectQuery<T>^ Intersect(
ObjectQuery<T>^ query
)
member Intersect :
query:ObjectQuery<'T> -> ObjectQuery<'T>
public function Intersect(
query : ObjectQuery<T>
) : ObjectQuery<T>
參數
- query
類型:System.Data.Entity.Core.Objects.ObjectQuery<T>
表示要產生交集之結果的查詢。
傳回值
類型:System.Data.Entity.Core.Objects.ObjectQuery<T>
新的 ObjectQuery 執行個體。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | 如果 query 參數是 null。 |