Consuming SQL Functions with Entity Framework

profile
Tim Deschryver
timdeschryver.dev

A programming language contains built-in functions that can be used to perform specific tasks easily. Just like any other language, all the different SQL dialicts has built-in functions. Within SQL Server you can make use of the T-SQL functions, such as DATEADD, SOUNDEX, GETDATE, and many more.

Ofcourse when you're Entity Framework you will be using C# to write your queries. Doing so, you'll notice that not all these functions are available in the C# or Entity Framework API.

Some of the build-in SQL functions have a .NET counterpart, for example, to add days to a date you use DATEADD in TSQL, and in C# this becomes DateTime.AddDays. But some of them don't, for example SOUNDEX in TSQL(to find similar strings instead of a full-match) does not have a C# version. The reason that some methods do not have a method with Entity Framework is done to keep the Entity Framework API consistent across different database providers.

To leverage the built-in methods, it's possible to register these SQL functions within the DBContext. Once a function is registered you can use it in your Entity Framework queries in a database provider-agnostic way.

As an example in this blogpost, let's see how to use the SOUNDEX function in Entity Framework.

Adding the SOUNDEX function to Entity Framework link

To do this, create a new method in the DbContext, and annotate it with the DbFunction attribute.

Notice that we don't implement the method, we just provide the correct signature.

You can now use the SoundEx method and call the function in your Entity Framework query. In the next example, we use a name query parameter to filter customers based on their name by using the SoundEx method.

When the query is executed this generates the following SQL statement. To give you an idea, if we search for customers with the name "Timothy", this also matches the following names "Timmothy", "Timoteo", or "Timotheo".

In the query, you see that the SoundEx method is used in the WHERE clause. To remove the NULL checks in the SQL statement, we can set the IsNullable property of the DbFunction attribute to false.

This results in a cleaner SQL statement.

Implementing your own SQL functions link

Besides the built-in functions, you can also create your own SQL functions and add them to the DbContext in a similar way. For your custom functions, set the IsBuiltIn property to false and you can also define the function's schema.

I don't recommend creating your own SQL functions, but registering existing functions can be useful while porting an existing codebase to a newer version.

Conclusion link

Overall, using DbFunctions can be a useful way to take advantage of specific database features in your Entity Framework queries, but there is one caveat. Because you're using database specific function it becomes harder to port to other databases if you ever want to do this. In our example, the SOUNDEX function does not exist in all databases, or it has a different name. So, when you ever want to switch to another database you should revisit all the added DbFunctions.

Incoming links

Feel free to update this blog post on GitHub, thanks in advance!

Join My Newsletter (WIP)

Join my weekly newsletter to receive my latest blog posts and bits, directly in your inbox.

Support me

I appreciate it if you would support me if have you enjoyed this post and found it useful, thank you in advance.

Buy Me a Coffee at ko-fi.com PayPal logo

Share this post