Skip to content

Commit

Permalink
Normalize delimiters in raw string
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Mar 2, 2023
1 parent 590d63c commit 126268c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ public virtual async Task SqlQueryRaw_annotations_do_not_affect_successive_calls

Assert.Equal(14, actual.Length);

query = context.Database.SqlQueryRaw<UnmappedCustomer>("SELECT * FROM [Customers]");
query = context.Database.SqlQueryRaw<UnmappedCustomer>(NormalizeDelimitersInRawString("SELECT * FROM [Customers]"));
actual = async
? await query.ToArrayAsync()
: query.ToArray();
Expand Down

0 comments on commit 126268c

Please sign in to comment.