I am trying to pass a special characters to a custom function in Web API. The function works if I don't pass special characters. The special characters that I am referring to are '#' ,'&' ,....
[HttpGet] [EnableQuery(MaxExpansionDepth = 5)] public IQueryable<Test> QueryTest(string Query) { var dbTest = db.Test.AsQueryable(); return dbTest; }