I have this class
public class FilterQuery
{
public FilterQuery() { }
public string OrderBy { set; get; }
public string OrderType { set; get; }
public int? Page { set; get; }
public int ResultNumber { set; get; }
}
I would like to use it like this
public IQueryable<Listing> FindAll(FilterQuery? filterQuery)
Is this possible?
This immediately begs the question of why. Classes are by definition reference types and thus are already nullable. It makes no sense to wrap them in a nullable type.
In your case, you can simply define:
and call
FindAll(null)to pass no filter query.If you’re using C#/.NET 4.0, a nice option is:
which means you don’t even have to specify the null. An overload would do the same trick in previous versions.
Edit: Per request, the overload would simply look like: