Tutorials for LINQ Beginners
1. LINQ In General
2. LINQ Group Function
3. LINQ Join Function
4. LINQ Let Function
5. LINQ Sum Function
6. LINQ Cast Function
7. LINQ IF Condition
8. LINQ for XML
Tutorials for LINQ Beginners
1. LINQ In General
2. LINQ Group Function
3. LINQ Join Function
4. LINQ Let Function
5. LINQ Sum Function
6. LINQ Cast Function
7. LINQ IF Condition
8. LINQ for XML
these have been very helpful for me !! well worth a watch and subscription
Hello,
I have an excel with 473 columns, in which I want only 61 columns. How can I write through LINQ Query. Please help me with this.
@ISBS_ROBOT
Do you know which columns do you need? Is there an array which contains the columns you need?
Or the columns you need start with specific letter, or end with specific letter, or contains something special?
Any information about the issue, so that I can help you!
Yes bro,
I know which columns I need. I have the headers of columns which I want.
Hello,
Here I want only specific columns based on headers and I need to pick with those headers.
And columns position doesn’t change. Normally It’s taking lot of time to execute. I’m in need of LINQ Query. Please help me with this.
Hey
I know , it’s an old question but in case someone else is facing the same issue.
This might help:
dt_Data is your original Datatble, dt_FilteredData is the new Datatable and Column1 , Column2 ColumnX are the columns you need in the filtered Datatable.
Please Mark this as Solution, if it’s useful to you.