I am,getting below error while writing linQ query.
“CopyToDatatable is not part of Member of System.Data.EnumerableRow”
Assembly reference is already present in xaml file.
Can anyone help?
I am,getting below error while writing linQ query.
“CopyToDatatable is not part of Member of System.Data.EnumerableRow”
Assembly reference is already present in xaml file.
Can anyone help?
When you are writing the linq querey and storing in a variable. Make sure to be variable datatype in datatable datatype.
Hope it helps!!
Why not just use the Add Data Row activity?
Right-click on this xaml (or Main xaml) and open it using Notepad. You will see a lot of code, into which you need to add the following line:
<AssemblyReference>System.Data.DataSetExtensions</AssemblyReference>
Do it here:
Hope this helps,
Best Regards.
Select(Function (x)… will select the column values but not the rows, so we cannot apply copytodatatable
Maybe you want to do:
dtSmall = dtOrig.DefaultView.ToTable(false, {"Europe"})
we answered with
dtSmall = dtOrig.DefaultView.ToTable(false, {"Europe"})