Is there a way to single quotes in the database. Below is the hack I came up with to hide the single quotes escape .
int locationNameFormPostion = 1;
string @locationName = request.Form[locationNameFormPostion].Replace("'", "`").ToUpper();
editor.Field(new Field("LocationName"));
editor.Field("LocationName").SetValue(@locationName);