Nettiers version 2.2.0 does not generate output parameters for custom stored procedures like the one below. This procedure declares an output parameter, gets a dataset from a view, and sets the rowcount to the output parameter. This new version of Nettiers does not find the output parameters and as a result is not included in the generated classes.
User Mduray wrote a patch for version 2.1, but that patch is now outdated and was not included in the newest release. If you have a solution please post it here for everyone to use.
CREATE PROCEDURE [dbo].[_ViewFaq_Base_GetByFaqId]
@FaqId INT , @OutputRowCount INT OUTPUT
AS
SELECT
FaqId, Topic, Solution
FROM
ViewFaq_Base
WHERE FaqId = @FaqId
SET @OutputRowCount = @@RowCount