You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It include another one, that is basically an example of how to implement a customized method that return a result set based in a Data transfer object (DTO).
33
34
@@ -147,6 +148,15 @@ RETURNS NVARCHAR (MAX)
147
148
AS
148
149
EXTERNAL NAME [API_Consumer].[UserDefinedFunctions].[GetTimestamp]
149
150
151
+
GO
152
+
PRINT N'Creating [dbo].[fn_GetBytes]...';
153
+
GO
154
+
CREATE FUNCTION [dbo].fn_GetBytes
155
+
(@value NVARCHAR (MAX) NULL )
156
+
RETURNS NVARCHAR (MAX)
157
+
AS
158
+
EXTERNAL NAME [API_Consumer].[UserDefinedFunctions].fn_GetBytes
0 commit comments