If I were you I would use LINQ to XML for all of your CRUD operations. The LINQ to XML operations are powerful and will save you a
lot of coding. Take a look to the following for code samples on CRUD (Create = XML Construction, READ = LINQ Query, UPDATE = XML Write, DELETE = DML):
atconway
All-Star
16846 Points
2756 Posts
Re: XML vb.net
May 14, 2010 02:42 PM|LINK
If I were you I would use LINQ to XML for all of your CRUD operations. The LINQ to XML operations are powerful and will save you a lot of coding. Take a look to the following for code samples on CRUD (Create = XML Construction, READ = LINQ Query, UPDATE = XML Write, DELETE = DML):
LINQ to XML Samples:
http://msdn.microsoft.com/en-us/vbasic/bb688087.aspx
Hope this helps!