from and select in c# .net?

前端 未结 5 1116
后悔当初
后悔当初 2021-01-29 10:02

Can anyone Please tell me how to specify the particular column in the select statement given below:

var combinedrows = from dt1 in DsResults.Tables[0].AsEnumerab         


        
5条回答
  •  死守一世寂寞
    2021-01-29 11:01

    Not sure what your question is... The linq query is a regular join between dsResults.Tables[0] and dsResults.Tables[1] based on the MethodName field.

    What are you trying to do?

提交回复
热议问题