ObjectContext.CreateQuery<T>(String, ObjectParameter[]) 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.
Creates an ObjectQuery<T> in the current object context by using the specified query string.
public virtual System.Data.Entity.Core.Objects.ObjectQuery<T> CreateQuery<T> (string queryString, params System.Data.Entity.Core.Objects.ObjectParameter[] parameters);
abstract member CreateQuery : string * System.Data.Entity.Core.Objects.ObjectParameter[] -> System.Data.Entity.Core.Objects.ObjectQuery<'T>
override this.CreateQuery : string * System.Data.Entity.Core.Objects.ObjectParameter[] -> System.Data.Entity.Core.Objects.ObjectQuery<'T>
Public Overridable Function CreateQuery(Of T) (queryString As String, ParamArray parameters As ObjectParameter()) As ObjectQuery(Of T)
Type Parameters
- T
The entity type of the returned ObjectQuery<T>.
Parameters
- queryString
- String
The query string to be executed.
- parameters
- ObjectParameter[]
Parameters to pass to the query.
Returns
An ObjectQuery<T> of the specified type.
Exceptions
The queryString or parameters 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