File tree 1 file changed +2
-2
lines changed
test/DapperTests/IntegrationTests
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ namespace DapperTests.IntegrationTests;
6
6
internal sealed class SqlTextAdapter ( DatabaseProvider databaseProvider )
7
7
{
8
8
#if NET6_0
9
- private const RegexOptions Options = RegexOptions . Compiled | RegexOptions . CultureInvariant | RegexOptions . ExplicitCapture ;
9
+ private const RegexOptions Options = RegexOptions . Compiled | RegexOptions . CultureInvariant ;
10
10
#else
11
- private const RegexOptions Options = RegexOptions . Compiled | RegexOptions . CultureInvariant | RegexOptions . ExplicitCapture | RegexOptions . NonBacktracking ;
11
+ private const RegexOptions Options = RegexOptions . Compiled | RegexOptions . CultureInvariant | RegexOptions . NonBacktracking ;
12
12
#endif
13
13
14
14
private static readonly Dictionary < Regex , string > SqlServerReplacements = new ( )
You can’t perform that action at this time.
0 commit comments