@@ -12,15 +12,15 @@ namespace PSql.Integration;
1212public class SqlConnectionIntegrationTests
1313{
1414 [ Test ]
15- public void ExecuteAndProjectTo_ClrTypes ( )
15+ public void ExecuteAndProject_ClrTypes ( )
1616 {
1717 using var connection = new SqlConnection (
1818 IntegrationTestsSetup . Database . ConnectionString ,
1919 IntegrationTestsSetup . Credential ,
2020 TestSqlLogger . Instance
2121 ) ;
2222
23- using var result = connection . ExecuteAndProjectTo (
23+ using var result = connection . ExecuteAndProject (
2424 """
2525 SELECT *, 10 FROM (VALUES (N'a', 1), (N'b', 2)) AS T (S, X);
2626 SELECT *, 20 FROM (VALUES (N'c', 3), (N'd', 4)) AS T (S, Y);
@@ -37,7 +37,7 @@ public void ExecuteAndProjectTo_ClrTypes()
3737
3838 [ Test ]
3939 [ SetCulture ( "kl-GL" ) ] // Greenlandic
40- public void ExecuteAndProjectTo_SqlTypes ( )
40+ public void ExecuteAndProject_SqlTypes ( )
4141 {
4242 // NOTE: It appears that the current .NET culture is what determines
4343 // the collation of a SqlString. Even a collation specified explicitly
@@ -55,7 +55,7 @@ static SqlString Greenlandic(string s)
5555 TestSqlLogger . Instance
5656 ) ;
5757
58- using var result = connection . ExecuteAndProjectTo (
58+ using var result = connection . ExecuteAndProject (
5959 """
6060 SELECT *, 10 FROM (VALUES (N'a', 1), (N'b', 2)) AS T (S, X);
6161 SELECT *, 20 FROM (VALUES
@@ -75,15 +75,15 @@ static SqlString Greenlandic(string s)
7575 }
7676
7777 [ Test ]
78- public void ExecuteAndProjectTo_Exception ( )
78+ public void ExecuteAndProject_Exception ( )
7979 {
8080 using var connection = new SqlConnection (
8181 IntegrationTestsSetup . Database . ConnectionString ,
8282 IntegrationTestsSetup . Credential ,
8383 TestSqlLogger . Instance
8484 ) ;
8585
86- using var result = connection . ExecuteAndProjectTo (
86+ using var result = connection . ExecuteAndProject (
8787 """
8888 SELECT * FROM (VALUES (1/1)) AS T (X);
8989 SELECT * FROM (VALUES (1/0)) AS T (X);
0 commit comments