I do I iterate the records in a database using LINQ when I have already built the LINQ DB code?

Posted by Seth Spearman on Stack Overflow See other posts from Stack Overflow or by Seth Spearman
Published on 2010-04-14T02:10:31Z Indexed on 2010/04/14 2:13 UTC
Read the original article Hit count: 405

I asked on SO a few days ago what was the simplest quickest way to build a wrapper around a recently completed database. I took the advice and used sqlmetal to build linq classes around my database design.

Now I am having two problems. One, I don't know LINQ. And, two, I have been shocked to realize how hard it is to learn. I have a book on LINQ (Linq In Action by Manning) and it has helped some but at the end of the day it is going to take me a couple of weeks to get traction and I need to make some progress on my project today.

So, I am looking for some help getting started.

Click HERE To see my simple database schema.
Click HERE to see the vb class that was generated for the schema.

My needs are simple. I have a console app. The main table is the SupplyModel table. Most of the other tables are child tables of the SupplyModel table.

I want to iterate through each of Supply Model records. I want to grab the data for a supply model and then DoStuff with the data. And I also need to iterate through the child records, for each supply model, for example the NumberedInventories and DoStuff with that as well.

I want to only iterate the SupplyModels that are have IDs that are in an array of strings containing the IDs.

I need help doing this in VB rather than C# if possible.

Thanks for your help.

Seth

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about linq-to-sql