You can reuse the connection on an ObjectContext to create a store command as follows: using (MyContext context = new MyContext()) { // In V1 of the EF, the context connection is always an EntityConnection EntityConnection entityConnection = (EntityConnection...