ObjectContext.CreateQuery<T>(String, ObjectParameter[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的查詢字串,在目前的物件內容中建立 ObjectQuery<T>。
public:
generic <typename T>
System::Data::Objects::ObjectQuery<T> ^ CreateQuery(System::String ^ queryString, ... cli::array <System::Data::Objects::ObjectParameter ^> ^ parameters);
public System.Data.Objects.ObjectQuery<T> CreateQuery<T> (string queryString, params System.Data.Objects.ObjectParameter[] parameters);
member this.CreateQuery : string * System.Data.Objects.ObjectParameter[] -> System.Data.Objects.ObjectQuery<'T>
Public Function CreateQuery(Of T) (queryString As String, ParamArray parameters As ObjectParameter()) As ObjectQuery(Of T)
類型參數
- T
傳回之 ObjectQuery<T> 的實體類型。
參數
- queryString
- String
要執行的查詢字串。
- parameters
- ObjectParameter[]
要傳遞給查詢的參數。
傳回
指定之型別的 ObjectQuery<T>。
例外狀況
queryString
或 parameters
參數為 null
。
範例
此範例會建立簡單的查詢,並逐一查看結果集合。
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
string queryString =
@"SELECT VALUE contact FROM AdventureWorksEntities.Contacts
AS contact WHERE contact.FirstName = @fn";
ObjectQuery<Contact> contactQuery =
context.CreateQuery<Contact>(queryString,
new ObjectParameter("fn", "Frances"));
// Iterate through the collection of Contact items.
foreach (Contact result in contactQuery)
Console.WriteLine("First Name: {0}, Last Name: {1}",
result.FirstName, result.LastName);
}
備註
您可以使用 CreateQuery 來建立屬於目前物件內容之指定型別的 ObjectQuery<T>。