2009-09-18 41 views

Respuesta

15

Prueba esto:

var MyFees = from c in ctx.Fees 
      where !ExcludedFeeIDs.Contains(c.FeeID) 
      select c; 
+0

funcionó como un encanto! Gracias Yannick. –

+0

feliz de poder ayudar. Para consultas –

+4

simplemente algunas personas prefieren utilizar la notación de puntos: myFees var = ctx.Fees.Where (! Cuota => ExcludedFeeIDs.Contains (fee.FeeID)); – ICR

Cuestiones relacionadas