gpt4 book ai didi

linq-to-sql - Linq to SQL 中相当于 TOP 或 LIMIT/OFFSET 的是什么?

转载 作者:行者123 更新时间:2023-12-03 04:11:36 24 4
gpt4 key购买 nike

我该怎么做

Select top 10 Foo from MyTable

在 Linq to SQL 中?

最佳答案

使用Take method :

var foo = (from t in MyTable
select t.Foo).Take(10);

在 VB LINQ 中有一个 take 表达式:

Dim foo = From t in MyTable _
Take 10 _
Select t.Foo

来自文档:

Take<TSource> enumerates source and yields elements until count elements have been yielded or source contains no more elements. If count exceeds the number of elements in source, all elements of source are returned.

关于linq-to-sql - Linq to SQL 中相当于 TOP 或 LIMIT/OFFSET 的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/192203/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com