TSQL ‘IN’ Equivalent in LINQ

I needed to create an ‘in’ query in LINQ.  After searching around a bit, I came across this post.  Very handy:

var q = from l in context.RoadAlert_Location join at in alertTypeIds on l.AlertTypeId equals at select l; foreach (RoadAlert_Location location in q) { locations.Add(MapLocation(location)); }

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: