Using MVC 3 and Entity Framework code first here and looking for a solution to the following problem:
I have a custom model binder that binds DB objects on post-back:
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
ValueProviderResult value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName + ".Id");
Int32 Id = Int32.Parse(value.AttemptedValue);
Company company = _context.Companies.AsNoTracking().FirstOrDefault(c => c.Id == Id);
return company;
}
These bound objects are then returned to the controller which creates a new job with the bound objects
[HttpPost]
public ActionResult EditJob(CreateJobViewModel model)
{
model.Job.DateCreated = DateTime.Now;
if (model.Job.Id == 0)
{
if (model.ajaxLocation != null)
{
model.Job.Locations = new Collection<Location>();
model.Job.Locations.Add(model.ajaxLocation);
}
jobRepository.CreateJob(model.Job);
}
else
{
jobRepository.UpdateJob(model.Job);
}
_context.SaveChanges();
return RedirectToAction("Index");
}
The problem is that these objects are tracked by different object contexts or they are detached. How can I share an object context between the controller and the custom model binders without using DI (the client doesn't want DI)? I have tried storing the context in HttpContext.Items with no success.
Thanks