Skip to content Skip to sidebar Skip to footer

Linq To Sql - Having And Group By

I've this query below working fine. However I want to implement it using Linq. select u.ID, u.NAME from Task t join BuildingUser bu ON bu.ID_BUILDING = t.ID_BUILDING join [User]

Solution 1:

You can try something like this:

var ids = new[] { 2, 9 };
var results =
    from t in db.Tasks
    join bu in db.BuildingUsers on t.ID_BUILDING equals bu.ID_BUILDING
    group bu by bu.ID_BUILDING into bg
    join u in db.Users on bg.Key equals u.ID
    where ids.Contains(t.ID) && u.ID != t.ID_USER
    group u bynew { u.ID, u.NAME } into g
    where bg.Count() == db.Tasks.Count(t2 => ids.Contains(t2.ID))
    select g.Key;

Or if you have navigation properties set up correctly, you can try this:

var ids = new[] { 2, 9 };
var results =
    from t in db.Tasks.Where(x => ids.Contains(x.ID))
    from u in t.BuildingUsers.SelectMany(bu => bu.Users)
                             .Where(x => x.ID != t.ID_USER)
    group u bynew { u.ID, u.NAME } into g
    where t.BuildingUsers.Count() == db.Tasks.Count(x => ids.Contains(x.ID))
    select g.Key;

Post a Comment for "Linq To Sql - Having And Group By"