This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
tests/ServiceStack.OrmLiteV45.Tests Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,9 @@ public static IOrmLiteExecFilter ExecFilter
189
189
public static Func < string , string > SanitizeFieldNameForParamNameFn = fieldName =>
190
190
( fieldName ?? "" ) . Replace ( " " , "" ) ;
191
191
192
+ /// <summary>
193
+ /// Only supported in Oracle DialectProvider
194
+ /// </summary>
192
195
public static bool UseParameterizeSqlExpressions { get ; set ; }
193
196
}
194
197
}
Original file line number Diff line number Diff line change 111
111
</ItemGroup >
112
112
<ItemGroup >
113
113
<Compile Include =" Expressions\IUntypedSqlExpression.cs" />
114
+ <Compile Include =" Expressions\ParameterizedSqlExpression.cs" />
114
115
<Compile Include =" NamingStrategy.cs" />
115
116
<Compile Include =" OrmLiteCommand.cs" />
116
117
<Compile Include =" OrmLiteContext.cs" />
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ protected void CreateNewDatabase()
83
83
ConnectionString = GetFileConnectionString ( ) ;
84
84
}
85
85
86
- public Dialect Dialect = Dialect . SqlServer ;
86
+ public Dialect Dialect = Dialect . Sqlite ;
87
87
protected OrmLiteConnectionFactory DbFactory ;
88
88
89
89
OrmLiteConnectionFactory Init ( string connStr , IOrmLiteDialectProvider dialectProvider )
You can’t perform that action at this time.
0 commit comments