Posts
Sort by recent activity
SQL CLR TVF ORDER BY hint is ignored
When scripting SQL CLR Table Valued Function with SSMS, ORDER BY hint is not shown.
-- Original Script ...
CREATE FUNCTION [dbo].[FunctionName]( @SomeArgument bit )
RETURNS TABLE (
Value1 int,
Ordi...