使用 Linq Vb.net 进行内连接
我正在尝试连接两个具有相同键字段的数据表。
表1
ID Class
---- -----
1 10
2 9
表2
ID Class
---- -----
1 8
2 7
结果
ID Class1 Class2
1 10 8
2 9 7
I'm trying to join two datatables of same keyfields.
table1
ID Class
---- -----
1 10
2 9
table2
ID Class
---- -----
1 8
2 7
Result
ID Class1 Class2
1 10 8
2 9 7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是用户和用户客户端之间连接的代码,您可以替换表格并获取连接结果
下面的图像适用于 C#,但会给您详细的想法
如果您是初学者,您可以查看以下内容:
SQL 到 LINQ(可视化表示)
following is code for joining between user and userclients you can replace your table and get the result of join
Follwing image is for the c# but will give you idea in detail
if you are beginner you can look this :
SQL to LINQ ( Visual Representation )
尝试这样的事情:
try something like this: