gpt4 book ai didi

c# - Entity Framework - 选择不同的

转载 作者:太空狗 更新时间:2023-10-29 19:53:58 30 4
gpt4 key购买 nike

我有一个名为 Tag 的表,其中包含一个名为 Label 的列和一个名为 AuctionId 的列。我还有一个字符串数组,它们是搜索词。我想编写一些 Linq to Entities 代码,这将为我提供一个不同的 AuctionIds 列表,其中标签与其中一个搜索词匹配。这是伪代码:

return a list of unique AuctionIds where Label is in searchTerms

如何做到这一点?

最佳答案

您可以在列表中使用 Contains()。

List<String> AuctionIDs = (from tagItem in Tags
where searchItems.Contains(tagItem.Label)
select tagItem.AutionID).Distinct().ToList();

关于c# - Entity Framework - 选择不同的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9327474/

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