我有一个存储过程,我通过Entity Framework调用。
存储过程有2个日期参数。我在调用存储过程的2次中提供了不同的参数。我已经使用SQL事件探查器验证了正确调用存储过程并返回正确的结果。
当我第二次用不同的参数调用我的方法时,即使存储过程带回了正确的结果,创建的表也包含与我第一次调用它时相同的数据。
dtStart = 01/08/2009
dtEnd = 31/08/2009
public List<dataRecord> GetData(DateTime dtStart, DateTime dtEnd)
{
var tbl = from t in db.SP(dtStart, dtEnd)
select t;
return tbl.ToList();
}
GetData((new DateTime(2009, 8, 1), new DateTime(2009, 8, 31))
// tbl.field1 value = 45450 - CORRECT
GetData(new DateTime(2009, 7, 1), new DateTime(2009, 7, 31))
// tbl.field1 value = 45450 - WRONG 27456 expected
这是一个实体框架聪明和缓存的案例吗?我无法理解为什么它会缓存这个,因为它已经执行了两次存储过程。
我是否必须采取措施才能关闭tbl
?
完整的代码列表
namespace ProfileDataService
{
public partial class DataService
{
public static List<MeterTotalConsumpRecord> GetTotalAllTimesConsumption(DateTime dtStart, DateTime dtEnd, EUtilityGroup ug, int nMeterSelectionType, int nCustomerID,
int nUserID, string strSelection, bool bClosedLocations, bool bDisposedLocations)
{
dbChildDataContext db = DBManager.ChildDataConext(nCustomerID);
var tbl = from t in db.GetTotalConsumptionByMeter(dtStart, dtEnd, (int) ug, nMeterSelectionType, nCustomerID, nUserID, strSelection, bClosedLocations, bDisposedLocations, 1)
select t;
return tbl.ToList();
}
}
}
/// CALLER
List<MeterTotalConsumpRecord> _P1Totals;
List<MeterTotalConsumpRecord> _P2Totals;
public void LoadData(int nUserID, int nCustomerID, ELocationSelectionMethod locationSelectionMethod, string strLocations, bool bIncludeClosedLocations, bool bIncludeDisposedLocations,
DateTime dtStart, DateTime dtEnd, ReportsBusinessLogic.Lists.EPeriodType durMainPeriodType, ReportsBusinessLogic.Lists.EPeriodType durCompareToPeriodType, ReportsBusinessLogic.Lists.EIncreaseReportType rptType,
bool bIncludeDecreases)
{
///Code for setting properties using parameters..
_P2Totals = ProfileDataService.DataService.GetTotalAllTimesConsumption(_P2StartDate, _P2EndDate, EUtilityGroup.Electricity, 1, nCustomerID, nUserID, strLocations,
bIncludeClosedLocations, bIncludeDisposedLocations);
_P1Totals = ProfileDataService.DataService.GetTotalAllTimesConsumption(_StartDate, _EndDate, EUtilityGroup.Electricity, 1, nCustomerID, nUserID, strLocations,
bIncludeClosedLocations, bIncludeDisposedLocations);
PopulateLines() //This fills up a list of objects with information for my report ready for the totals to be added
PopulateTotals(_P1Totals, 1);
PopulateTotals(_P2Totals, 2);
}
void PopulateTotals(List<MeterTotalConsumpRecord> objTotals, int nPeriod)
{
MeterTotalConsumpRecord objMeterConsumption = null;
foreach (IncreaseReportDataRecord objLine in _Lines)
{
objMeterConsumption = objTotals.Find(delegate(MeterTotalConsumpRecord t) { return t.MeterID == objLine.MeterID; });
if (objMeterConsumption != null)
{
if (nPeriod == 1)
{
objLine.P1Consumption = (double)objMeterConsumption.Consumption;
}
else
{
objLine.P2Consumption = (double)objMeterConsumption.Consumption;
}
objMeterConsumption = null;
}
}
}
}
答案 0 :(得分:0)
考虑将DataService类更改为:
public partial class DataService
{
public List<MeterTotalConsumpRecord>
GetTotalAllTimesConsumption(SearchCriteria sc)
{
var db = new dbChildDataContext(); // new every time, just in this test case.
var totalConsumption = db.GetTotalConsumptionByMeter(sc.DtStart,
sc.DtEnd,
sc.ug,
sc.MeterSelectionType,
sc.CustomerID,
sc.UserID,
sc.Selection,
sc.ClosedLocations,
sc.DisposedLocations, 1)
.ToList();
//inspect how many results are returned.
int rowCount = totalConsumption.Count;
return totalConsumption;
}
}
//use objects to pass between classes
public class SearchCriteria
{
public DateTime DtStart {get;set;}
public DateTime DtEnd {get;set;}
public int ug {get;set;}
public int MeterSelectionType {get;set;}
public int CustomerID {get;set;}
public int UserID {get;set;}
public string Selection {get;set;}
public bool ClosedLocations {get;set;}
public bool DisposedLocations {get;set;}
}