Procedura: ottenere una query da un metodo (Guida per programmatori C#)
In questo esempio viene illustrato come restituire una query da un metodo come valore restituito e come parametro out.
Una query deve contenere un tipo di IEnumerable o IEnumerable<T> o un tipo derivato quale IQueryable<T>. Qualsiasi valore restituito o parametro out di un metodo che restituisce una query deve pertanto contenere anche quel tipo. Se un metodo materializza una query in un tipo List<T> o Array concreto, verranno restituiti i risultati della query anziché la query stessa. Una variabile di query restituita da un metodo può ancora essere composta o modificata.
Esempio
Nell'esempio seguente il primo metodo restituisce una query come valore restituito, mentre il secondo metodo restituisce una query come parametro out. In entrambi casi, viene restituita una query e non vengono restituiti i risultati della query.
class MQ
{
// QueryMethhod1 returns a query as its value.
IEnumerable<string> QueryMethod1(ref int[] ints)
{
var intsToStrings = from i in ints
where i > 4
select i.ToString();
return intsToStrings;
}
// QueryMethod2 returns a query as the value of parameter returnQ.
void QueryMethod2(ref int[] ints, out IEnumerable<string> returnQ)
{
var intsToStrings = from i in ints
where i < 4
select i.ToString();
returnQ = intsToStrings;
}
static void Main()
{
MQ app = new MQ();
int[] nums = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
// QueryMethod1 returns a query as the value of the method.
var myQuery1 = app.QueryMethod1(ref nums);
// Query myQuery1 is executed in the following foreach loop.
Console.WriteLine("Results of executing myQuery1:");
// Rest the mouse pointer over myQuery1 to see its type.
foreach (string s in myQuery1)
{
Console.WriteLine(s);
}
// You also can execute the query returned from QueryMethod1
// directly, without using myQuery1.
Console.WriteLine("\nResults of executing myQuery1 directly:");
// Rest the mouse pointer over the call to QueryMethod1 to see its
// return type.
foreach (string s in app.QueryMethod1(ref nums))
{
Console.WriteLine(s);
}
IEnumerable<string> myQuery2;
// QueryMethod2 returns a query as the value of its out parameter.
app.QueryMethod2(ref nums, out myQuery2);
// Execute the returned query.
Console.WriteLine("\nResults of executing myQuery2:");
foreach (string s in myQuery2)
{
Console.WriteLine(s);
}
// You can modify a query by using query composition. A saved query
// is nested inside a new query definition that revises the results
// of the first query.
myQuery1 = from item in myQuery1
orderby item descending
select item;
// Execute the modified query.
Console.WriteLine("\nResults of executing modified myQuery1:");
foreach (string s in myQuery1)
{
Console.WriteLine(s);
}
// Keep console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
Compilazione del codice
Creare un progetto Visual Studio destinato a .NET Framework versione 3.5 o successiva. Per impostazione predefinita, il progetto include un riferimento a System.Core.dll e una direttiva using per lo spazio dei nomi System.Linq.
Sostituire la classe con il codice dell'esempio.
Premere F5 per compilare ed eseguire il programma.
Premere un tasto per chiudere la finestra della console.
Vedere anche
Concetti
Espressioni di query LINQ (Guida per programmatori C#)
Cronologia delle modifiche
Data |
Cronologia |
Motivo |
---|---|---|
Luglio 2010 |
Aggiunta di QueryMethod2 all'esempio. Miglioramento dei commenti esplicativi. |
Commenti e suggerimenti dei clienti. |