var datas = (from s in db.students
select new {
Name = s. Name
}).Union(
(
from t in db.teachers
Name = t.Name
} ));
68.(linq)union查询数据集
原文:https://www.cnblogs.com/sweettie/p/15096781.html