ObjectQuery<T>.Except(ObjectQuery<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This query-builder method creates a new query whose results are all of the results of this query, except those that are also part of the other query specified.
public System.Data.Entity.Core.Objects.ObjectQuery<T> Except (System.Data.Entity.Core.Objects.ObjectQuery<T> query);
member this.Except : System.Data.Entity.Core.Objects.ObjectQuery<'T> -> System.Data.Entity.Core.Objects.ObjectQuery<'T>
Public Function Except (query As ObjectQuery(Of T)) As ObjectQuery(Of T)
Parameters
- query
- ObjectQuery<T>
A query representing the results to exclude.
Returns
a new ObjectQuery instance.
Exceptions
If the query parameter is null.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework