Good, so this is an alternative to this.
I am trying to create an MVC application using LinqToSql, which allows bulk editing of data on one page.
Imagine a simple table element with ItemId, ItemName, ItemPrice as fields.
There are many examples of extremely simple MVC applications that show you a list of these items with an edit button next to each and an add button at the bottom.
From a user interface point of view, I find it very time consuming when a lot of data needs to be entered / updated.
I’m behind one page containing the names of the elements and prices in text files that can be edited at a time, and then one “Save” button to update the data.
I have seen several examples that perform the various steps of this, but have not yet found one that implements the complete solution. In particular, interaction with Linq.
I have several methods that I have tried, everything works, however, my gut feeling tells me that my methods "smell" and therefore I would like to see some examples of how other people tried to do this.
So, simply, my question is: can someone provide some links to some examples?
source
share