Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using Entity Objects
Message
 
To
06/12/2006 11:48:22
Bill Oeftering
Mainstreet Computers, Inc.
Belleville, Michigan, United States
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Environment versions
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01175267
Message ID:
01175570
Views:
6
>I need to know how to save an entity object in the datarow in order to save the dataset.
>I have code like this:
>
>oQuoteBiz Quote = new QuoteBiz;
>oQuoteEntity = new QuoteEntity()
>// set some values in the entity
>oQuoteEntity.QuoteDate=DateTime.Today;
>...
>oQuoteBiz.NewRow();
>oQuoteBiz.Entity=oQuoteEntity;
>
>// now how do save the entity in the data row ?
>// is there a better way than coding each column ?:
>oQuoteBiz.DataRow[0]["QuoteDate"]=oQuoteEntity.QuoteDate;
>...
>
>oQuoteBiz.SaveDataRow();
>
>Thanks

In the current version of the framework, an entity's properties are tied directly to a datarow (so a DataRow must exist before you can use the entity).

Try something like this instead:
oQuoteBiz Quote = new QuoteBiz();
oQuoteBiz.NewRow();

oQuoteBiz.Entity.QuoteDate = DateTime.Today;

oQuoteBiz.SaveDataRow();
-Paul

RCS Solutions, Inc.
Blog
Twitter
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform