如何在 MVC 中对 LINQ 执行 SQL 语句?
How can I implement SQL statement to LINQ in MVC?
美好的一天
我需要将以下 SQL 解释为 LINQ。
select
t1.req_no,
t1.seq_no,
t1.quantity,
t1.uom,
t1.item_name,
t2.event_date
from tb_cs_test t1, tb_cs_test2 t2 where (t1.req_no = 1 and t2.req_no = 1 );
我使用 MVC 并使用此 SQL 语句我需要根据我输入的条件抛出请求的字段
谢谢
你可以用 JOIN
:
from t1 in tb_cs_test
join t2 in tb_cs_test2
on t1.req_no equals t2.req_no
where t1.req_no = 1
select new {
t1.req_no,
t1.seq_no,
t1.quantity,
t1.uom,
t1.item_name,
t2.event_date
}
美好的一天
我需要将以下 SQL 解释为 LINQ。
select
t1.req_no,
t1.seq_no,
t1.quantity,
t1.uom,
t1.item_name,
t2.event_date
from tb_cs_test t1, tb_cs_test2 t2 where (t1.req_no = 1 and t2.req_no = 1 );
我使用 MVC 并使用此 SQL 语句我需要根据我输入的条件抛出请求的字段
谢谢
你可以用 JOIN
:
from t1 in tb_cs_test
join t2 in tb_cs_test2
on t1.req_no equals t2.req_no
where t1.req_no = 1
select new {
t1.req_no,
t1.seq_no,
t1.quantity,
t1.uom,
t1.item_name,
t2.event_date
}