1
How to convert code select
below in LINQ?
select * from producao
where id not in
(select idProducao from bpi)
1
How to convert code select
below in LINQ?
select * from producao
where id not in
(select idProducao from bpi)
4
You can do it like this:
db.Producao.Where(p => !db.Bpi.Select(b => b.idProducao).Contains(c.Id));
3
producao.Where(p=>!bpi.Select(p=>p.idProducao).ToList().Contains(id))
Browser other questions tagged c# .net linq select
You are not signed in. Login or sign up in order to post.
Italo, I answered a very similar question yesterday to your question http://answall.com/a/186100/5846
– Pablo Tondolo de Vargas