If you mean the custom features of SQL Server . Then yes ; you can use it as usual:
myCommand.CommandText = "SELECT fn_Yourfunctionname(@parameternames)";
myCommand.CommandType = CommandType.Text;
myCommand.Parameters.Add(new SqlParameter("@parameternames", ...
The reason it works is because it is because functions are called directly in SQL Server.
source
share