I am trying to retrieve a list of string where it contains \"Britney Spears\", and this is what I use
from p in Objects where p.Title.Contains(\"Britney Spea
You can use the SqlMethods.Like method for this purpose.
from p in Objects where SqlMethods.Like(p.Title, "Britney% Spears") select p