I am working on a project that uses Entity Framework and change tracking in SQL Server. I want to create a user defined function that returns the current version of the tracked changes in the database, so that I can use it in my queries with Entity Framework.
However, when I try to create the function, I get the following error:
Invalid use of a side-effecting operator 'change_tracking_current_version' within a function.
Is there a way to create a user defined function with it without causing an error?
Here is the code of my function:
CREATE FUNCTION dbo.GetChangeVersion()
RETURNS bigint
AS
BEGIN
DECLARE @version bigint;
SET @version = CHANGE_TRACKING_CURRENT_VERSION();
RETURN @version;
END