C#中用linq语句如何查询出数据库最新的一条数据,也就是id是最大的一条数据。 sql语句: select * from User where id=(select MAX(Id) from User)