C#中的ExecuteScalar()方法用于执行SQL查询,并返回结果集中的第一行第一列的值。以下是使用ExecuteScalar()方法的示例:
```csharp
using System;
using System.Data.SqlClient;
class Program
{
static void Main()
{
string connectionString = "
string query = "SELECT COUNT(*) FROM Customers";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand(query, connection))
{
int count = (int)command.ExecuteScalar();
Console.WriteLine("Total number of customers: " + count);
}
}
}
}
```
在上面的示例中,首先需要将`
使用`SqlConnection`和`SqlCommand`打开数据库连接并执行查询。在`ExecuteScalar()`方法返回的结果上使用强制类型转换,以获取查询结果的整数值。最后,将查询结果打印到控制台。
请注意,`ExecuteScalar()`方法返回的是一个`object`类型的值,因此需要进行适当的强制类型转换来获取实际的结果。