Hi there,
i'm using selfservicing and sqlserver
my stored-proicedure look likes this:
CREATE PROC dbo.usp_fooMethod (@fooID INT, @barID INT = NULL)
....
when generating i only have the methods
where i need to fill in fooID and barID
i cannot use DBNull in my code, because it expects an Integer
how do i do this???