Hi Guys,
I meet a problem. I need pass null value to a funtion in business logical layer.
Public Function JobSearch(ByVal sSkill As String, ByVal iCountryID As Nullable(Of Integer), ByVal iStateId As Nullable(Of Integer)) As JobPostingsDataTable
Return Adapter.GetDataSearchForJobs(sSkill, iCountryID, iStateId)
End Function
sSkill, iCountryID, iStateID are variants in a stored procedure.
@sSkill varchar(255)
@iCountryID int=null
@iStateID int=null
Please help me, if someone knows how to do it. Thanks a lot.