Typed dataset question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two tables in a typed dataset. Table A is populated from an LDAP
query (names of computers in our enterprise). Table B is populated via a
tableadapter from an SQL database that contains the results of a previous
LDAP query. I need to compare Table B to Table A, remove records from B that
no longer exits and add records to B that have been 'discovered'. Can I
compare these tables inside the dataset or do I need to do something else
with the data first? I am just cutting my teeth on ADO.NET so any direction
would be greatly appreciated...

Thanks!
 
Okay, i'll get started... Thanks! :)

Miha Markic said:
Hi James,

You have to do it manually (foreach loop or something).

--
Miha Markic [MVP C#]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/

James said:
I have two tables in a typed dataset. Table A is populated from an LDAP
query (names of computers in our enterprise). Table B is populated via a
tableadapter from an SQL database that contains the results of a previous
LDAP query. I need to compare Table B to Table A, remove records from B
that
no longer exits and add records to B that have been 'discovered'. Can I
compare these tables inside the dataset or do I need to do something else
with the data first? I am just cutting my teeth on ADO.NET so any
direction
would be greatly appreciated...

Thanks!
 
Back
Top