Can I do a LINQ Join from an List to a DataSet? Are there any caveats to doing this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are obvious performance problems ahead, depending on the size of each side of the join, so the real caveat is scale.
You won’t have to do any converting, you can select rows out of the dataset/table as you would normally with LINQ and just include an “on” clause to tell it how to compare a row to your
List<T>.