Skip to content

Instantly share code, notes, and snippets.

View EminoMeneko's full-sized avatar
💭
I may be VEEEEEEERYYYYYYYYY slow to respond. (or not if you're lucky)

EminoMeneko

💭
I may be VEEEEEEERYYYYYYYYY slow to respond. (or not if you're lucky)
  • France - Moselle
View GitHub Profile
@marcominerva
marcominerva / DateOnlyConverter.cs
Created January 7, 2022 15:09
DateOnly Converter & Comparer for Entity Framework Core 6.0
public class DateOnlyConverter : ValueConverter<DateOnly, DateTime>
{
public DateOnlyConverter() : base(
dateOnly => dateOnly.ToDateTime(TimeOnly.MinValue),
dateTime => DateOnly.FromDateTime(dateTime))
{
}
}
public class DateOnlyComparer : ValueComparer<DateOnly>