Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 813 Bytes

File metadata and controls

19 lines (11 loc) · 813 Bytes

SQL Server String Functions

All string functions are fully supported and relevant are mappend to String methods and properties (Length, Concat, ToLower/Invariant, ToUpper/Invariant, Replace, Trim/Start|End, Contains, Starts|Ends/With, Substring). Of course all the SQL methods can be called directly as well.

Note, Contains and Starts|Ends/With are implemented using LIKE operator.

In addition strings can be freely concatenated:

and interpolated using C# syntax:


< BACK | HOME