@ -1182,6 +1182,9 @@ namespace EntityFrameworkCore.Jet.FunctionalTests
}
modelBuilder.Entity<TBlog>().ToTable("Blog");
//Ignore WayRound it is a type long which is currently too large for Jet
//TODO: Remove this when we have a workaround for ulong
modelBuilder.Entity<TBlog>().Ignore(e => e.WayRound);
public DbSet<TBlog> Blogs { get; set; }
@ -8606,7 +8606,7 @@ FROM `Gears` AS `g`
"""
SELECT `f`.`Id`, `f`.`CapitalName`, `f`.`Discriminator`, `f`.`Name`, `f`.`ServerAddress`, `f`.`CommanderName`, `f`.`Eradicated`
FROM `Factions` AS `f`
WHERE `f`.`ServerAddress` = CAST('127.0.0.1' AS nvarchar(45))
WHERE `f`.`ServerAddress` = '127.0.0.1'
""");