I need to delete a lot of columns from my data table. Does exist any query in C# with LINQ or any command that do this in a simple way by specifying the name of the column? Something like: dt.DeleteColumn("column name"); Or maybe clone only the column that i need in another dt?
-
Why don't you just execute an SQL query with your criteria, example: techonthenet.com/mysql/tables/….RG Servers– RG Servers2020-07-29 08:03:57 +00:00Commented Jul 29, 2020 at 8:03
-
learn.microsoft.com/de-de/dotnet/api/…Tim Schmelter– Tim Schmelter2020-07-29 08:06:04 +00:00Commented Jul 29, 2020 at 8:06
Add a comment
|