Stored Procedures
To enable stored procedures in the application, do the following:
MyCommand.CommandText = "GetEmpSalary";
MyCommand.CommandType = CommandType.StoredProcedure;
To retrieve the return value from a stored procedure, the application should add an extra parameter to the parameter collection for the PsqlCommand object. This parameter’s ParameterDirection property should be set to ParameterDirection.ReturnValue. The return value parameter can be anywhere in the parameter collection because it does not correspond to a specific parameter marker in the Text property of the PsqlCommand object.
If the stored procedure does not produce a return value, parameters bound with the ParameterDirection property as ReturnValue are ignored.
If the stored procedure returns a ReturnValue from the database and the application has not bound a parameter for it, the data provider discards the value.
Note for ADO.NET Entity Framework Users: The PsqlConnection object includes properties and methods that provide enhanced statistics functionality. The methods and properties are standard in the ADO.NET data provider, but are not available at the ADO.NET Entity Framework layer. Instead, the ADO.NET Entity Framework data provider exposes the same functionality through "pseudo" stored procedures. See Using Stored Procedures with the ADO.NET Entity Framework for more information.