TimeSpan time24 = new TimeSpan(24, 0, 0);
TimeSpan time18 = new TimeSpan(18, 0, 0);
// first get today's sleeping hours
List<Model.Sleep> sleeps = context.Sleeps.Where(
o => (clientDateTime - o.ClientDateTimeStamp < time24) &&
o.ClientDateTimeStamp.TimeOfDay > time18 &&
clientDateTime.TimeOfDay < time18 &&
o.UserID == userid).ToList();
を持っている必要があります。このLINQの式は、この例外がスローされます。DbArithmeticExpression引数が数値一般的なタイプに
DbArithmeticExpression arguments must have a numeric common type.
助けてください!
'clientDateTime - o.ClientDateTimeStamp'の結果はどうなりますか? – shahkalpesh
EF例外でTimeSpanのオブジェクトであるはずのnoramllyがスローされます。 –