DateTime Vergleich, ohne Zeit-Teil?

Schrieb ich diesen code. Aber ich will zu ignorieren, die Zeit, die ich vergleichen möchten nur Tag.

from s in sayac_okumalari
where s.okuma_tarihi == startDate && s.sayac_id == sayac_id
group s by new { date = new DateTime(((DateTime)s.okuma_tarihi).Year, ((DateTime)s.okuma_tarihi).Month, ((DateTime)s.okuma_tarihi).Day, ((DateTime)s.okuma_tarihi).Hour, 1, 1) } into g
select new
{
     okuma_tarihi = g.Key.date,
     T1 = g.Sum(x => x.toplam_kullanim_T1),
     T2 = g.Sum(x => x.toplam_kullanim_T2),
     T3 = g.Sum(x => x.toplam_kullanim_T3)
};

Beispiel:

25.02.1987 == 25.02.1987

InformationsquelleAutor AliRıza Adıyahşi | 2012-07-24

Schreibe einen Kommentar