Skip to content

Commit cdbc7ae

Browse files
Update README.md
1 parent 5670d3b commit cdbc7ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This library is powered by [Entity Framework Extensions](https://entityframework
1313
What's EntityFrameworkExtras?
1414
=====================
1515

16-
EntityFrameworkExtras provides some useful additions to EntityFramework such as executing Stored Procedures with User-Defined Table Types and Output Parameters.
16+
EntityFrameworkExtras provides some useful additions to EntityFramework, such as executing Stored Procedures with User-Defined Table Types and Output Parameters.
1717

1818
### Executing a Stored Procedure with a User Defined Table Type
1919

@@ -76,9 +76,9 @@ context.Database.ExecuteStoredProcedure(proc);
7676

7777

7878

79-
### Executing a Stored Procedure with a Output parameter
79+
### Executing a Stored Procedure with an Output parameter
8080

81-
* To add an Output parameter you just need to set the Direction parameter to ParameterDirection.Output.
81+
* To add an Output parameter, you need to set the Direction parameter to ParameterDirection.Output.
8282

8383
~~~ csharp
8484
[StoredProcedure("storedProc_GetOldestAge")]
@@ -89,7 +89,7 @@ public class GetOldestAgeStoredProcedure
8989
}
9090
~~~
9191

92-
* Execute the Stored Procedure and the parameter will be set to the output parameter value
92+
* Execute the Stored Procedure, and the parameter will be set to the output parameter value
9393

9494
~~~ csharp
9595
var proc = new GetOldestAgeStoredProcedure();

0 commit comments

Comments
 (0)