diff --git a/PetaPoco.SqlKata/PetaPoco.SqlKata.cs b/PetaPoco.SqlKata/PetaPoco.SqlKata.cs index e178d5b..c3a079f 100644 --- a/PetaPoco.SqlKata/PetaPoco.SqlKata.cs +++ b/PetaPoco.SqlKata/PetaPoco.SqlKata.cs @@ -31,7 +31,7 @@ namespace PetaPoco.SqlKata { - public enum CompilerType { SqlServer, MySql, Postgres, Firebird, SQLite }; + public enum CompilerType { SqlServer, MySql, Postgres, Firebird, SQLite, Oracle }; public static class SqlKataExtensions { @@ -42,6 +42,7 @@ public static class SqlKataExtensions { CompilerType.Postgres, new Lazy(() => new PostgresCompiler()) }, { CompilerType.Firebird, new Lazy(() => new FirebirdCompiler()) }, { CompilerType.SQLite, new Lazy(() => new SqliteCompiler()) }, + { CompilerType.Oracle, new Lazy(() => new OracleCompiler()) }, }; ///