I have 2 queries that work, I was hoping to combine them to reduce the database calls.
                var locations = from l in db.Locations
                                where l.LocationID.Equals(TagID)
                                select l;
I do the above because I need l.Name, but is there a way to take the above results and put them into the query below?
                articles = from a in db.Articles
                               where
                               (
                               from l in a.Locations
                               where l.LocationID.Equals(TagID)
                               select l
                               ).Any()
                               select a;
Will I actually be reducing any database calls here?
 
     
     
    