资 源 简 介
C# 获取客户表中指定城市的客户,这是一个C# SQLSERVER结合的数据检索程序实例,用来查询满足指定条件的数据库数据,并显示出来。来看代码如下:
//获取客户表中指定城市的客户(使用存储过程返回行集合):
string MyCity = "London";
DataClasses1DataContext MyDataContext = new DataClasses1DataContext();
System.Data.Linq.ISingleResult MyRows = MyDataContext.MyCustomersByCity(MyCity);
string MyInfo = MyCity+"的客户包括:";
foreach (MyCustomersByCity_个结果 MyCustomer in MyRows)
{
MyInfo+="
客户ID:"+MyCustomer.CustomerID;
}
MessageBox.Show(MyInfo, "信息提示", MessageBoxButtons.OK);