如何在 LINQ 中编写此 SQL 语句?
Select top 1 1 from MyTable
where some condition
或类似的东西,
Select Top 1 1 from table1 inner join table2 on x=y where condition
First()/Take() 返回第一条记录。请让我知道这些功能是否可以解决问题以及如何解决。
如何在 LINQ 中编写此 SQL 语句?
Select top 1 1 from MyTable
where some condition
或类似的东西,
Select Top 1 1 from table1 inner join table2 on x=y where condition
First()/Take() 返回第一条记录。请让我知道这些功能是否可以解决问题以及如何解决。