Skip to content

Instantly share code, notes, and snippets.

View a5ync's full-sized avatar

Przemek (Adrian) Augustyn a5ync

  • Las Vegas
View GitHub Profile
@werwolfby
werwolfby / <Custom>DbContext.cs
Last active May 19, 2025 10:27
EF Core DateTime Utc kind
public class CustomDbContext : DbContext
{
// ...
protected override void OnConfiguring(DbContextOptionsBuilder options)
{
// Replace default materializer source to custom, to convert DateTimes
options.ReplaceService<IEntityMaterializerSource, DateTimeKindEntityMaterializerSource>();
base.OnConfiguring(options);