I have following data
Date | ProjectTypeID
-------------- -------------
10/31/2016 | 1
11/30/2016 | 2
12/31/2016 | 2
01/01/2016 | 3
What would be the Linq query to get all the dates for ProjectTypeIDs which has dates count > 1
Results should yield me following List of Dates because ProjectTypeID = 2 has two dates associated with it
11/30/2016
12/31/2016