gpt4 book ai didi

linq - 如何向 IQueryable 变量添加新记录?

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

使用 LINQ 从我的数据库查询 IQueryable 结果,如何将新记录添加到 IQueryable 结果。

最佳答案

你可以使用联合

IQueryable<int> foo = new SomeQueryable<int>();
IQueryable<int> foo2 = new SomeQueryable<int>();
foo = foo.Union(foo2);

关于linq - 如何向 IQueryable 变量添加新记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/434737/

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