我正在做两个查询:
Dim worker = (From p in db.workers where p.dateAdded > today
select new with{.name = p.name, .desc = p.description})
Dim client = (From p in db.clients where p.dateAdded > today
select new with{.name = p.name, .desc = p.description})
如何将这两个查询合并为只有一个可以用作DataSource
.