Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
435 views
in Technique[技术] by (71.8m points)

c# - linq查询可从对象列表中返回不同的字段值(linq query to return distinct field values from a list of objects)

class obj
{
    int typeID; //10 types  0-9 
    string uniqueString; //this is unique
}

Assume there is list with 100 elements of obj, but only 10 unique typeIDs.

(假设存在一个列表,其中包含obj的100个元素,但只有10个唯一的typeID。)
Is it possible to do write a LINQ query return the 10 unique ints from the list of objs?

(是否可以编写LINQ查询以从objs列表中返回10个唯一的整数?)

  ask by astronought translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
objList.Select(o=>o.typeId).Distinct()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...