var query1 = from p in dt1.AsEnumerable()
                         from pp in dt2.AsEnumerable()
                         where p.Field<string>("sruser") == pp.Field<string>("stuser")
                         select p;
            DataTable dt3 = query1.CopyToDataTable<DataRow>();

相关文章:

  • 2021-12-13
  • 2022-12-23
  • 2021-11-05
  • 2021-09-17
  • 2021-07-13
  • 2021-08-08
  • 2022-12-23
猜你喜欢
  • 2022-02-18
  • 2021-12-01
  • 2022-02-05
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
相关资源
相似解决方案