I am trying to execute a insert query using Entity Framework.
I have something like this:
Context.database.ExecuteSqlCommand("Insert into tableName Values({0},{1},{2}", param1, param2, param3)
but this is throwing an error
incorrect syntax near '@p1'
What is this '@p1' ?