我想在我的第一个Silverlight项目中将此SQL查询转换为LINQ to Entities,但我不知道如何,我从未与Linq合作过:
select *
from Tipo t,
Unidad u
where t.Clave = @Clave
and t.Equipo = u.Equipo
and u.IDUni in
(select IDUni
from Orden o
where o.IDUni = u.IDUni
and o.Clave = t.Clave)
有人请帮助我
答案 0 :(得分:2)
我试试这个,两个都运行正常:
ObjectSet<Orden> ordenes = this.ObjectContext.Orden;
ObjectSet<Unidad> unidades = this.ObjectContext.Unidad;
ObjectSet<Tipo> tipos = this.ObjectContext.Tipo;
var query = from t in tipos
from u in unidades
where t.Clave == _clave
where t.Equipo == u.Equipo
where (from o in ordenes
where o.IDUni == u.IDUni
where o.Clave == t.Clave
select o.IDUni).Contains(u.IDUni)
select new { t, u };
和
var query = from t in tipos
from u in unidades
from o in ordenes
where t.Clave == _clave
where t.Equipo == u.Equipo
where o.IDUni == u.IDUni
where o.Clave == t.Clave
select t;
非常感谢
McGarnagle和
Aducci
答案 1 :(得分:1)
这是您的SQL查询的翻译。是否有您想要的特定列? select *
var query = from t in context.Tipo
from u in context.Unidad
where t.Clave == clave
where t.Equipo == u.Equipo
where (from o in context.Orden
where o.IDUni == u.IDUni
where o.Clave == t.Clave
select o.IDUni).Contains(u.IDUni)
select new { t, u };
答案 2 :(得分:0)
这是Join
后跟Where
。尝试这样的事情:
public void DoStuff(IEnumerable<Tipo> t, IEnumerable<Unidad> u, IEnumerable<Orden> o)
{
string clave = "something";
var items = t
.Join(u, // join to collection "u"
trow => trow.Equipo, // "t" selector
urow => urow.Equipo, // "u" join selector
(trow, urow) => new { trow = trow, urow = urow }) // result selector
.Where(item => item.trow.Clave == clave
&& o.Where(orow => orow.IDUni == item.urow.IDUni
&& orow.Clave == item.trow.Clave)
.Select(orow => orow.IDUni)
.Contains(item.urow.IDUni)
);
}