How to query Couchbase using GetView StartKey and stringKey contains "&"

I apologize to you sir…

{
“name”: “Abercrombie & Fitch Company”,
“isactive”: true,
“sysdate”: “2014-02-09T19:32:48”,
“type”: “company”
}
{
“name”: “Jason’s Store”,
“isactive”: true,
“sysdate”: “2014-02-09T19:32:48”,
“type”: “company”
}
{
“name”: “A.H. Belo Corporation”,
“isactive”: true,
“sysdate”: “2014-02-09T19:32:48”,
“type”: “company”
}

function (doc, meta) {
if (doc.type == “company” && doc.name) {
emit(doc.name, null);
}
}

protected IView GetView(string name, string startKey, string endKey, int limit, bool isProjection = false)
{
string test = “Abercrombie & Fitch Company”;
return _Client.GetView(_designDoc, name, isProjection).StartKey(test).EndKey(endKey).Limit(limit);
}

I updated my .Net Client to 1.3.3 and make sure Im using the correct version of Newtonsoft.
I get a different error below…

Cannot deserialize the current JSON array (e.g. [1,2,3]) into type…
because the type requires a JSON object (e.g. {“name”:“value”}) to deserialize correctly.
Newtonsoft.Json.JsonException {Newtonsoft.Json.JsonSerializationException}