GarethKruse
MIS
Hello JohnEfford and everybody,
I ask myself, whether it's also possible to use complex filter expressions in dataTable.dataView.RowFilter and dataTable.Select. For example, how could I apply expressions such as the two expressions below?
select TerritoryDescription, r.RegionId, RegionDescription
from territories t, region r
where t.RegionID=r.RegionId and r.RegionId=1
select * from dataTable1
where id not in (select id from dataTable2)
Any comments are welcomed.
Best regards,
Gareth