我有一个 ASP.NET MVC WebAPI 项目,并且我有一个入口点来按 ID 进行一项调查。
public IEnumerable<Models.SurveyQuestionViewModel> GetSurveyById(int id)
{
using (ITSurveyEntities model = new ITSurveyEntities())
{
var questions = model.SurveyQuestions.Where(s => s.SurveyId == id).AsEnumerable();
if (!questions.Any())
{
throw new HttpResponseException(HttpStatusCode.NotFound);
}
return (from q in questions
select new Models.SurveyQuestionViewModel
{
Id = q.Id,
Question = q.Question,
LongDescription = q.LongDescription,
});
}
}
但是,当我向它提出请求时:
$.getJSON(apiUrl + '/' + id)
.done(function (item) {
surveyBusy.hide();
var o = $('#survey-content');
})
.fail(function (jqXHR, textStatus, err) {
var o = $('.error-bar');
if (err === 'Not Found') {
o.text('The survey you requested doesn\'t yet have any questions configured.');
}
else {
o.text('An error occurred: ' + err);
}
o.fadeIn();
});
我掉进了:fail
处理程序。通过开发人员工具检查实际响应后,我发现根本原因如下:
操作无法完成,因为 DbContext 已被释放。
我是否以错误的方式使用此对象?我认为一切都很好,因为我正在调用AsEnumerable()
初始查询,因此可以直接往返数据库。当我得到底部的结果时,它没有进行任何数据库调用。我只是将这些值编组到视图模型。