Click here to Skip to main content
15,885,875 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sir

the PriceUpdation.aspx page has a Textbox and a button

and in database i have a table having two Fields

1) Product Price

2) Final Product Price

on the click of button --- THE percentage % we will enter in that textbox like 15% it will callculate the 15% of Product Price and add that calcluted % to the Final Product Price ..

All This i have to do with LINQ

Can i update two coloumns by LINQ ... my table has 23 Fields .. ??


ANS asap ======================= Thanks alot for replying
Posted

1 solution

Yes you can. You get the object from the database context set the properties, then call SubmitChanges on the context object to submit the changes. Scott Gu has a good article on this

Using LINQ to SQL (Part1)[^]


You are storing calculated fields, it might be better to store the percentage and re-calculate the two properties you have above. This depends upon the nature of your application of course!
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900