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.
コードに問題があります。SqlDataAdapter行がある場合は、行数を取得したいと思います。
SqlDataAdapter
dt.Rows.Countそれはテーブルで行があるので試してみてください。
dt.Rows.Count
比較の代わりに代入を行っていたので、次を使用する必要があります==。
==
if (dt.Rows.Count == 0 ) { // code here }