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.
C# の ID のリストから MySQL テーブルの一連の行を削除しようとしています。テーブルに employeeID 行があります。基本的に私の質問は、どのような構文を使用するのですか?
Dapper を使用している場合は、次のようになります。
int[] ids = new int[]{1,2,3}; DbConnection cn = ... //open connection here cn.Execute("delete from Employee where employeeID in @ids", new {ids});
employeeId in( 2,4,3,2,34 ) の従業員から削除