You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add handling of ResultType static parameter for SqlProgrammabilityProvider:
* factorize common logic handling addition of inner types (for record and table types)
* fix XML documentation for SqlProgrammabilityProvider
* add one test checking the table return type on a function call
<summary>Typed access to SQL Server programmable objects: stored procedures, functions and user defined table types.</summary>
56
57
<param name='ConnectionStringOrName'>String used to open a SQL Server database or the name of the connection string in the configuration file in the form of “name=<connection string name>”.</param>
57
-
<param name='ResultType'>A value that defines structure of result: Records, Tuples, DataTable, or SqlDataReader.</param>
58
58
<param name='ConfigFile'>The name of the configuration file that’s used for connection strings at DESIGN-TIME. The default value is app.config or web.config.</param>
59
59
<param name='DataDirectory'>The name of the data directory that replaces |DataDirectory| in connection strings. The default value is the project or script directory.</param>
60
+
<param name='UseReturnValue'>To be documented.</param>
61
+
<param name='ResultType'>A value that defines structure of result: Records, Tuples, DataTable, or SqlDataReader, this affects only Stored Procedures.</param>
60
62
"""
61
63
62
64
this.AddNamespace(nameSpace,[ providerType ])
@@ -68,7 +70,7 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this =
0 commit comments