diff --git a/src/EFCore.Jet/Properties/JetStrings.resx b/src/EFCore.Jet/Properties/JetStrings.resx
index 2635ebc..1bfd865 100644
--- a/src/EFCore.Jet/Properties/JetStrings.resx
+++ b/src/EFCore.Jet/Properties/JetStrings.resx
@@ -169,6 +169,18 @@
Found type alias with name: {alias} which maps to underlying data type {dataType}.
Debug JetEventId.TypeAliasFound string string
+
+ The property '{property}' on entity type '{entityType}' is of type 'byte', but is set up to use a SQL Server identity column; this requires that values starting at 255 and counting down will be used for temporary key values. A temporary key value is needed for every entity inserted in a single call to 'SaveChanges'. Care must be taken that these values do not collide with real key values.
+ Warning JetEventId.ByteIdentityColumnWarning string string
+
+
+ A database type for column '{columnName}' on table '{tableName}' could not be found, the column will be skipped.
+ Warning JetEventId.ColumnWithoutTypeWarning string string
+
+
+ The decimal property '{property}' is part of a key on entity type '{entityType}'. If the configured precision and scale don't match the column type in the database, this will cause values to be silently truncated if they do not fit in the default precision and scale. Consider using a different property as the key, or make sure that the database column type matches the model configuration and enable decimal rounding warnings using 'SET NUMERIC_ROUNDABORT ON'.
+ Warning JetEventId.DecimalTypeKeyWarning string string
+
Found column with table: {tableName}, column name: {columnName}, ordinal: {ordinal}, data type: {dataType}, maximum length: {maxLength}, precision: {precision}, scale: {scale}, nullable: {isNullable}, identity: {isIdentity}, default value: {defaultValue}, computed value: {computedValue}
Debug JetEventId.ColumnFound string string int string int int int bool bool string string
diff --git a/test/EFCore.Jet.FunctionalTests/JetFixture.cs b/test/EFCore.Jet.FunctionalTests/JetFixture.cs
index a103641..32cba9f 100644
--- a/test/EFCore.Jet.FunctionalTests/JetFixture.cs
+++ b/test/EFCore.Jet.FunctionalTests/JetFixture.cs
@@ -23,6 +23,7 @@ namespace EntityFrameworkCore.Jet.FunctionalTests
w =>
{
w.Log(JetEventId.ByteIdentityColumnWarning);
+ w.Log(JetEventId.DecimalTypeKeyWarning);
});
}
}