Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EF シーダーで単純なカスタム SQL クエリを実行したいのですが、単純な SQL クエリを実装して、結果 (count()、単なる整数) を ac# 変数に格納するにはどうすればよいですか?
このようにしてみてください:
var cmd = db.Database.Connection.CreateCommand(); cmd.CommandType = CommandType.Text; cmd.CommandText = "/*query*/"; cmd.Parameters.Add(new SqlParameter("@param", paramValue)); var value = cmd.ExecuteScalar();