I have a table-value function that works correctly if I try the following query:
SELECT *
FROM dbo.GetScheduleForEmployee() AS schedule
However if I try to create a view with that query I get a "too few parameters" error.
Is there a limitation with table-value functions and views?