Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 703 Bytes

File metadata and controls

17 lines (10 loc) · 703 Bytes

SQL Server Scalar Functions

Calling a scalar function

To connect an SQL UDF, declare a C# function with the correct signature and add [Function] attribute. In fact everything is connected this way. ELINQ does not have any special SQL knowledge for SELECT or FROM. It reads the attributes and generates the query based on metadata.

inside SELECT:

< BACK | HOME