Revert "Type MApping: a long gets mapped to integer in Jet" (#151)

This reverts commit 05b10ea856.
pull/159/head
Laurents Meyer 2 years ago committed by GitHub
parent 0d5676a4e5
commit 9babf78263
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,7 +35,7 @@ namespace EntityFrameworkCore.Jet.Storage.Internal
private readonly JetByteTypeMapping _byte = new JetByteTypeMapping("byte", DbType.Byte); // unsigned, there is no signed byte in Jet
private readonly ShortTypeMapping _smallint = new ShortTypeMapping("smallint", DbType.Int16);
private readonly IntTypeMapping _integer = new JetIntTypeMapping("integer");
private readonly JetLongTypeMapping _bigint = new JetLongTypeMapping("integer");//a long and integer are the same in Jet
private readonly JetLongTypeMapping _bigint = new JetLongTypeMapping("decimal");
private readonly JetFloatTypeMapping _single = new JetFloatTypeMapping("single");
private readonly JetDoubleTypeMapping _double = new JetDoubleTypeMapping("double");

Loading…
Cancel
Save