数据如下
ID Title Category About Link CategoryID
1 The Matrix Sci-Fi Text goes here http://... 1
2 The Simpsons Cartoon Text goes here http://... 2
3 Avengers Action Text goes here http://... 3
4 The Matrix Sci-Fi Text goes here http://... 1
5 The One Sci-Fi Text goes here http://... 1
6 The Hobbit Sci-Fi Text goes here http://... 1
我有一个包含类别的复选框列表。问题是,如果用户选择"动作"one_answers"科幻"作为显示类别,则"黑客帝国"将显示两次。
这是我在SQL查询中获得唯一行的尝试。
select distinct title, about, link from mytable
inner join tableCategories on categoryID = tableCategoriesID
group by title, about, link
使用LINQ,
(from table in movieTables
join x in categoryIDList
on categoryID equals x
slect table).Distinct()
请注意,类别位于由categoryID链接的单独表中。需要帮助在LINQ中显示唯一或不同的行
您可以愉快地将结果选择到您想要的任何列表中:
var v = from entry in tables
where matching_logic_here
select new {id = some_id, val=some_value};
,然后您可以根据需要在该列表上运行您的distinct(好吧,上面的ToList()
将使其成为一个)。
下面应该说明我的意思(只需粘贴到linqpad)。如果你使用的是VS,去掉.Dump()
:
void Main()
{
var input = new List<mock_entry> {
new mock_entry {id = 1, name="The Matrix", cat= "Sci-Fi"},
new mock_entry {id = 2, name="The Simpsons" ,cat= "Cartoon"},
new mock_entry {id = 3, name="Avengers" ,cat= "Action"},
new mock_entry {id = 4, name="The Matrix", cat= "Sci-Fi"},
new mock_entry {id = 5, name="The One" ,cat= "Sci-Fi"},
new mock_entry {id = 6, name="The Hobbit",cat= "Sci-Fi"},
};
var v = input.Where(e=>e.cat == "Action" || e.cat =="Sci-Fi")
.Dump()
.Select(e => new {n = e.name, c =e.cat})
.Dump()
;
var d = v.Distinct()
.Dump()
;
}
// Define other methods and classes here
public struct mock_entry {
public int id {get;set;}
public string name {get;set;}
public string cat {get;set;}
}
另一个选项是使用DistinctBy
from more linq,如这个问题所建议的
更简单的是,您可以使用GroupBy
,并只选择第一个条目(虽然您将丢失id,但由您决定)。
下面是一个与上面的示例一起使用的示例:
var v = input.GroupBy (i => i.name)
.Select(e => e.First ())
.Dump()
.Where(e=>e.cat == "Action" || e.cat =="Sci-Fi")
.Dump()
;
将收益率:
《黑客帝国》科幻电影
《复仇者联盟3》一部科幻电影
《霍比特人》科幻小说