Greetings Imar,
Quote:
|
Why not simply execute the stored procedure multiple times?
|
if I am not wrong then won't it hit database multiple times?
Quote:
|
use EF which handles all of this pretty nicely.....
|
how EF can do this, would it handle multiple rows or multiple columns?
My scenario is:
Table Structure: Id SettingName Value
Now values in table are as follows
1 CommentsAllowed No(0)
2 SentEmailAfterComment Yes(1)
3 CommentsPerPage 10
4 ReviewsPerPage 5
5 ShowNonAuthReviews No(0)
etc....
So if in a web form I want to update first 3 rows and on second web form I want to update last 2 rows, then is it possible with EF?
Please reply
Thanks