Executing SQL Scalar Functions

Executing SQL Scalar Functions

In this tutorial, we are going to learn about executing SQL Scalar functions. SQL Scalar function is just like a stored procedure that is written in an SQL script. What are SQL Scalar functions? An SQL scalar function is a user-defined function written in SQL and it returns a single value each time it is invoked. … An inlined SQL scalar function has … Read more

Categories SQL

How to upload files in ASP.NET CORE

How to upload files in ASP NET CORE

In this tutorial, we will learn how to upload files in ASP NET Core. We will create a project that will upload files to a physical directory and also save the files to the database. Using ASP.NET Core, we will also explore how we can return the file using the following return type. FileResult FileContentResult … Read more