↧
Answer by kakebake for C# Grabbing subset of table based off a Hashset if Ints
Seems like you are missing a ")" after Contains(...).The following should work :)orders = await _context.Order.Where(x => ids2.Contains(x.ORDERMAPID)).ToListAsync();
View ArticleC# Grabbing subset of table based off a Hashset if Ints
I have an Order and OrderMaster table. First I query the Master table, I then create a hashset of a column of Ints from that table. Lastly I want to get all orders that have those values.When I do the...
View Article