Ignore DateOnly and TimeOnly field in Gears Of War. No support yet

pull/133/head
Christopher Jolly 3 years ago
parent fbd8398d95
commit ae722d9033

@ -17,6 +17,14 @@ namespace EntityFrameworkCore.Jet.FunctionalTests.Query
base.OnModelCreating(modelBuilder, context);
modelBuilder.Entity<City>().Property(g => g.Location).HasColumnType("varchar(100)");
// No support yet for DateOnly/TimeOnly (#24507)
modelBuilder.Entity<Mission>(
b =>
{
b.Ignore(m => m.Date);
b.Ignore(m => m.Time);
});
}
}
}

Loading…
Cancel
Save