.Net EntityFramework binding to gridview - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T07:28:28Z http://stackoverflow.com/feeds/question/1075636 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1075636/net-entityframework-binding-to-gridview 1 .Net EntityFramework binding to gridview Jay 2009-07-02T17:19:54Z 2009-07-23T15:40:23Z <p>For simplicity I am going to use Northwind as an example... I would like to have a databound DataView that displays "Order" information data from two different entities "Products" and "Order Details"</p> <p>I want to build a web form where when the user clicks on the screen to view a "Order" It would display a single databound Dataview that contains the "Products.ProductName" and the "Order Details.Discount" for that product for the selected customer. The Discount will be editable/updateable where the Product Name will not. I know I will need template fields but what I cannot get to work is having both entitiies in the same dataview.</p> <p>I have tried several ways of databinding but none have worked.</p> <p>I will have an ADO .Net Entity Data Model that I will use that contains these (and other) tables.</p> <p>I have searched the web for an example but I must not be using the correct key words, I can't believe I am the first one looking for this functionality.</p> <p>I am hoping for a pointer to an article or example that is similar to my situation.</p> <p>Thanks in advance, -J</p> http://stackoverflow.com/questions/1075636/net-entityframework-binding-to-gridview/1088778#1088778 0 Answer by Shiraz Bhaiji for .Net EntityFramework binding to gridview Shiraz Bhaiji 2009-07-06T19:20:41Z 2009-07-06T19:20:41Z <p>You could try using Asp.Net Dynamic Data. This will generate much of the functionality that you are trying to create. For details, see:</p> <p><a href="http://msdn.microsoft.com/en-us/library/cc488545.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc488545.aspx</a></p> <p>Hope this helps</p> <p>Shiraz</p> http://stackoverflow.com/questions/1075636/net-entityframework-binding-to-gridview/1172672#1172672 0 Answer by Jay for .Net EntityFramework binding to gridview Jay 2009-07-23T15:40:23Z 2009-07-23T15:40:23Z <p>I was able to successfully bind to several tables to my gridview. Because of the limitation in Entity framework I could only update the fields to the main bonded entity, all other properties are "Eval"'ed and read only.</p>