I've created the following Context to be used with Entity Framework Code First:

public class Context : DbContext
    {
        public DbSet<Animal> Animals { get; set; }
    }

Now I would like to use this Context in an Asp.Net application to perform CRUD operations using a GridView. I need to create a DataSource to do the data binding. How would I go about?

The ASP part would look like this:

<asp:GridView runat="server" DataSourceID="animalDataSource" DataKeyNames="AnimalID" AutoGenerateColumns="false">   
    <Columns>
        <asp:BoundField DataField="Description" HeaderText="Description" />
        <asp:CommandField ShowCancelButton="true" ShowEditButton="true" ShowDeleteButton="true" />
    </Columns>
</asp:GridView>
link|improve this question

1  
Great Q&A thanks, I retaged: -crud +objectcontext in order to try help searching. Because I didn't find this by searching for DBContext ObjectContext GridView. the retagging didn't help tho :-\ – Myster Nov 9 '11 at 21:36
feedback

1 Answer

up vote 5 down vote accepted

You can use EntityDataSource as source for your GridView and implement handler for ContextCreating event:

protected void DataSource_ContextCreating(object sender, EntityDataSourceContextCreatingEventArgs e)
{
    var context = new Context();
    e.Context = ((IObjectContextAdapter)context).ObjectContext;
}

Then you just need to configure the data source in the page. EntitySetName should be hopefully same as your DbSet property name exposed on the context.

Other way is using ObjectDataSource which will make a bridge between GridView and DbSet<Animal> but this can be more complex especially if you want bi-didrectional data binding.

link|improve this answer
Nice, it does the job. The only problem is that the update will throw the exception: "Update is disabled for this control." – Kees C. Bakker Jun 13 '11 at 12:22
Hahaha... but that was easy to fix. Thanks for the answer man!! – Kees C. Bakker Jun 13 '11 at 12:24
@Kees How did you make the update work? – dawmail333 Jul 24 '11 at 10:29
Add this to your EntityDataSource in your aspx: EnableInsert="True" EnableUpdate="True" – Adam Tuliper May 14 at 18:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.