The username in the aspnet_users table is BlackR\johnBurns
I'm trying to write a query to get this record where username = but it is flagging
string username1 = @"BlackR\" + johnBurns;
var s = DbContext.ExecuteStoreQuery<string>("Select UserId FROM aspnet_Users where UserName = " + username1);
this fails saying Additional information: Incorrect syntax near '\'.
Does the @ not cancel this out? Is it because of its a SQL query?