Hello,
I have a model as follows:
class Page{
int statuscode;
}
Then I have this view,
function (doc, meta) {
if(doc.statusCode){
emit(doc.statusCode, 1);
}
}
I want to query this index to get the status codes that is not 200 and 300.
I am using c#. how can i do this?