私は2つのクエリを行っています:
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})
これらの2つのクエリをマージして、として使用できるクエリを1つだけにする方法を教えてDataSource
ください。