var handsonitems = from a in db.DltQuestionHandson
join c in db.DltBdChapter
on new { a.ChapterCode } equals new { c.ChapterCode }
select new
{
a.PlantCode,
c.ChapterCode,
c.ChapterKnowledge,
a.OrgSkillId,
c.SkillCode
};
var Jobevalitems = from a in db.DltQuestionJobeval
join c in db.DltBdChapter
on new { a.ChapterCode } equals new { c.ChapterCode }
select new
{
a.PlantCode,
c.ChapterCode,
c.ChapterKnowledge,
a.OrgSkillId,
c.SkillCode
};
var items = handsonitems.Union(Jobevalitems);

最新文章

  1. MFC序列化与反序列化
  2. Akka-remote使用入门
  3. 你的USB设备还安全吗?USB的安全性已从根本上被打破!
  4. 在Sublime中编辑批处理并运行
  5. html使用心得
  6. 连HTTPS都有漏洞,这么不安全的互联网我们还要继续用吗?
  7. text-indent
  8. Lua截取utf-8编码的中英文混合字符串
  9. php中的引用类型和值类型
  10. Shell编程中Shift的用法
  11. Java基础之写文件——使用Formatter对象加载缓冲区(UsingAFormatter)
  12. gitlab10.0安装手记
  13. python语言学习---4
  14. PHP函数之dirname()
  15. UVA 12345 Dynamic len(带修莫队)
  16. spring-boot json数据交互
  17. Entangle 2.0 “Sodium”正式发布
  18. Luogu4221 WC2018州区划分(状压dp+FWT)
  19. 底板芯片组与内存映射(Motherboard Chipsets and the Memory Map) 【转】
  20. Rplidar学习(三)—— ROS下进行rplidar调试

热门文章

  1. Selenium通过监听事件实现自动截图
  2. Spark应用程序开发流程
  3. 【IDE_IntelliJ IDEA】idea主题设置
  4. windows API下的模板缓冲(stencil buffer)
  5. MacOS上传文件到windows ftp时链接文件不见了
  6. CPDF_Document
  7. 文件上传-pubsec-文件上传大小限制
  8. volatile关键字及Java内存模式
  9. 如何使用 aph-cli 搭建本地静态开发环境(server + proxy + mock)
  10. Leetcode.142-Linked-list-cycle-ii(环形链表II)