How to call SQL Function in C#
By FoxLearn 11/10/2024 11:44:24 AM 172
To call an SQL function in C#, you'll typically interact with your database using ADO.NET, Entity Framework, or an ORM like Dapper.
Consider you have an SQL function in SQL Server called GetEmployeeSalary
that takes an EmployeeID
and returns the salary:
CREATE FUNCTION GetEmployeeSalary (@EmployeeID INT) RETURNS DECIMAL AS BEGIN DECLARE @Salary DECIMAL SELECT @Salary = Salary FROM Employees WHERE EmployeeID = @EmployeeID RETURN @Salary END
You can call a SQL function by using ADO.NET.
For example:
public decimal CallSqlFunc(int EmployeeId) { decimal salary = 0; using (var con = new SqlConnection(ConfigurationManager.AppSettings["connectionString"])) { con.Open(); var cmd = new SqlCommand("SELECT dbo.GetEmployeeSalary(@EmployeeId)", con); cmd.CommandType = CommandType.Text; cmd.Parameters.AddWithValue("@
EmployeeId",
EmployeeId); object result = cmd.ExecuteScalar(); if (result != DBNull.Value) { salary = Convert.ToDecimal(result); } return salary; } }
SqlConnection
: This establishes a connection to your database using a connection string
SqlCommand
: This is used to execute SQL queries.
ExecuteScalar()
is used to execute the SQL function and retrieve a single value.
SqlParameter
: This ensures safe parameterized queries, avoiding SQL injection.
This method demonstrates how to call an SQL function from C# using ADO.NET.
- How to handle nulls with SqlDataReader in C#
- Resolve nullable warnings
- Cannot convert null to type parameter ‘T’
- How to create a custom exception in C#
- How to check if a nullable bool is true in C#
- How to make a file read-only in C#
- How to Get all files in a folder in C#
- How to validate an IP address in C#
Categories
Popular Posts
How to disable Windows Defender SmartScreen
12/24/2024
Improve Blazor Website Performance
12/19/2024