こんなの持ってます……。
foreach (var pupilAvg in pupilsAvgs) {
Report_TeachersPosition teacher = new Report_TeachersPosition();
teacher.ORG_ID = pupilAvg.ORG_ID;
teacher.Yearcode = pupilAvg.YearCode;
teacher.Teacher_K5 = pupilAvg.PupilsAvg_K5 / ratio.ClassKto5;
teacher.Teacher_6to8 = pupilAvg.PupilsAvg_6to8 / ratio.Class6to8;
teacher.Teacher_9to12 = pupilAvg.PupilsAvg_9to12 / ratio.Class9to12;
teacher.Teacher_EPSFTE = teacher.Teacher_K5 + teacher.Teacher_6to8
+ teacher.Teacher_9to12;
teacher.Teacher_Adjusted_EPSSalary = teacher.Teacher_SAUEPSMatrix
* teacher.Teacher_Ratio;
teacher.Teacher_ElementarySalary = teacher.Teacher_Adjusted_EPSSalary
* entities.Report_Attending_Pupils_Avg.ToList()
.Where(x => x.ORG_ID == pupilAvg.ORG_ID
&& x.YearCode.Equals("" + yearCode))
.FirstOrDefault().PupilsAvg_K8_Percentage;
teacher.Teacher_SecondarySalary = teacher.Teacher_Adjusted_EPSSalary
* entities.Report_Attending_Pupils_Avg.ToList()
.Where(x => x.ORG_ID == pupilAvg.ORG_ID
&& x.YearCode.Equals("" + yearCode))
.FirstOrDefault().PupilsAvg_9to12_Percentage;
}
しかし、それclass
は...
public partial class Report_TeachersPosition {
public int ORG_ID { get; set; }
public Nullable<int> Yearcode { get; set; }
public Nullable<decimal> Teacher_K5 { get; set; }
public Nullable<decimal> Teacher_6to8 { get; set; }
public Nullable<decimal> Teacher_K8 { get; set; }
public Nullable<decimal> Teacher_9to12 { get; set; }
public Nullable<decimal> Teacher_EPSFTE { get; set; }
public Nullable<decimal> Teacher_ActualFTE { get; set; }
public Nullable<decimal> Teacher_Ratio { get; set; }
public Nullable<decimal> Teacher_TotalSalary { get; set; }
public Nullable<decimal> Teacher_ElementarySalary { get; set; }
public Nullable<decimal> Teacher_SecondarySalary { get; set; }
public Nullable<decimal> Teacher_SAUEPSMatrix { get; set; }
public Nullable<decimal> Teacher_Adjusted_EPSSalary { get; set; }
}
問題は... には、 からclass Report_TeachersPosition
のすべてのdecimal
値がありますdatabase
。そして、私は彼らが中にいることを望んでいますdouble
。だから私はそれをに変更してdouble
保存します。しかし、もう一度開くと、元に戻りdecimal
ます..理由はわかりません..誰か助けてくれますか????