Brug SqlCommand.ExecuteScalar() og cast det til en int
:
cmd.CommandText = "SELECT COUNT(*) FROM table_name";
Int32 count = (Int32) cmd.ExecuteScalar();
Brug SqlCommand.ExecuteScalar() og cast det til en int
:
cmd.CommandText = "SELECT COUNT(*) FROM table_name";
Int32 count = (Int32) cmd.ExecuteScalar();