Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using Entity Objects
Message
From
06/12/2006 11:48:22
Bill Oeftering
Mainstreet Computers, Inc.
Belleville, Michigan, United States
 
 
To
All
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Title:
Using Entity Objects
Environment versions
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01175267
Message ID:
01175267
Views:
42
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
Next
Reply
Map
View

Click here to load this message in the networking platform