2
votes
Fetching items which has a specific set of child elements (advanced query - possible?)
This should work for you:
string[] criteria = new[] { "Car", "Ford", "Offroad" };
var items =
from i in db.Item
let wantedMetas = db.Meta.Where(m => criteria.Contains(m …
5
votes
Visual Studio 2008 on Windows 7 beta
I have an issue with VS2008 SP1 on Win7 beta. In the LINQ to SQL (DBML) designer, the tables disappear when I mouse over them. I have tried searching but haven't found any mention of this anywhere. …
1
vote
Recommended Post-SP1 Visual Studio 2008 Hotfixes
All the VS2008 hotfixes are posted in the MSDN Code Gallery. You can …
0
votes
Drag and drop files into VS 2008 in Win 7
This is not a bug, but a security feature. To expand on Juan Manuel's answer:
…
