ef使用sql语句查询单个数据,比如我要查询某表里面的某一个值,该怎么用。谢谢大神
发布网友
发布时间:2022-05-06 03:31
我来回答
共1个回答
热心网友
时间:2023-10-10 22:11
declare
varchar temp(10)
select @temp=z from DB:A where ...
if(@temp==1)
select * from DB:B where...
else if(@temp==2)
select * from DB:C where...
else if(@temp==3)
select * from DB:D where...
这个思路应该是这样的,你自己把代码补充完整,数据类型定好,希望能帮到你追问大哥,我可能没有描述清楚,我的意思是说,在.net MVC 里面使用一个叫做Entity Framework 的框架,怎么用sql语句查询单行单列的数据。
不过还是谢谢你。