2013-09-25 4 views

Répondre

1

Ce serait quelque chose comme ça

<Table>.GroupBy(x => x.Numero_Operacion) 
     .Where(x => x.Count() > 1) 
     .SelectMany(x => x) 
+0

Merci pour votre réponse, et la même requête comment je peux écrire comme expression Lambda? – ratlab

+0

L'expression Lambda est juste une fonction anonimous - http://msdn.microsoft.com/en-us/library/vstudio/bb397687.aspx c'est 'x => x.Count()> 1' dans mon code, par exemple –