I am currently using this to query data in SQL Server:
var query = db.Phrases.AsQueryable();
if (options.Romaji != null) query = query
.Where(w => w.Romaji.Contains(options.Romaji));
How can I change this so that instead of looking for a row with a column with a string in it that it looks for a row with a column which starts with the string in options.Romaji?