I am using this LINQ expression:
phrases = await db.Phrases
.Where(w => w.English.Contains(options.English))
Is there a way that I can modify this so it will find rows with words that contain the options.English phrase even if the case is different?