File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 85
85
(**
86
86
### External *.sql file
87
87
88
- An ability to use external \*.sql file instead of inline strings can improve developement expirience .
88
+ An ability to use external \*.sql file instead of inline strings can improve developement experience .
89
89
Visual Studio has rich tooling support for *.sql files. (via SQL Server Data Tools)
90
90
91
91
<img src="img/sql_file_As_CommandText_1.png"/>
385
385
### Stored procedures
386
386
387
387
Command types generated by `SqlProgrammabilityProvider<...>` largely have same interface with exceptions:
388
- There is no static Create factory method because intellisense issue doesnt exist for these types
388
+ There is no static Create factory method because intellisense issue doesnt exist for these types
389
389
There is additional ExecuteSingle/ AsyncExecuteSingle to opt-in for singleton result set.
390
390
*)
391
391
@@ -445,4 +445,4 @@ of affected records it returns F# list of records.
445
445
Notice that list is data structure as oppose to lazy evaluated seq<_> computation.
446
446
This caused by a fact Sql Server + ADO.NET populates output parameter only after row set reader is closed.
447
447
See [http://stackoverflow.com/questions/65662/output-parameters-not-readable-when-used-with-a-datareader].
448
- *)
448
+ *)
You can’t perform that action at this time.
0 commit comments