Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Newbie question - Strongly Typed DS
Message
From
15/10/2010 09:53:35
Timothy Bryan
Sharpline Consultants
Conroe, Texas, United States
 
 
To
15/10/2010 09:40:29
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 3.0
Miscellaneous
Thread ID:
01485576
Message ID:
01485581
Views:
64
>Here's a newbie question
>
>I'm using strongly typed dataset I can use intellisense to access the columns nicely as long as I do it in the method that
>creates the dataset, as follows:
>
>
>
>  public DataTable EstablishBlankCustomerData()
>    {
>      meycotestDataSet ds = new meycotestDataSet();
>      ds.arcust.Rows.Clear();
>      ds.arcust.Rows.Add();
>      ds.arcust[0].country = "USA";
>      ds.arcust[0].currency = "USD";
>      ds.arcust[0].nocable = "N";
>      ds.arcust[0].nopump = "N";
>      ds.arcust[0].oringsvssnaps = "N";
>      ds.arcust[0].quomeycolite = "N";
>      ds.arcust[0].quoruggedmesh = "N";
>      ds.arcust[0].quosoliddrain = "N";
>      ds.arcust[0].quosolidpump = "N";  
>      return ds.arcust;     
>    }
>
>
>
>
>I can't figure out how to get intellisense to work when I access the dataset outside that method.
>
>I tried returning the dataset but that doesn't seem to work
>
>Am I missing something?

Bill,

You just need to put your reference to the dataset outside the method
in your class somewhere
meycotesDataSet ds;

then in your method
ds = new meycotesDataSet();
// and the rest of your code
Tim
Timothy Bryan
Previous
Reply
Map
View

Click here to load this message in the networking platform