gpt4 book ai didi

linq - linq选择一个随机行

转载 作者:行者123 更新时间:2023-12-03 14:30:39 24 4
gpt4 key购买 nike

我在linq-to-sql中有一个名为Quotes的表,其中包含2列:author和quote。如何选择随机行的两列?

最佳答案

Random rand = new Random();
int toSkip = rand.Next(0, context.Quotes.Count);

context.Quotes.Skip(toSkip).Take(1).First();

关于linq - linq选择一个随机行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4841084/

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