使用MS SQL表对gridview进行分组?

时间:2016-05-06 20:14:46

标签: c# sql-server wpf gridview

如何从MS SQL中的表中对项目进行分组?

I had been looking on this guide here

存在一些问题
 DataManager.RetrieveProductsbySubCat().Tables[0].DefaultView
  

当前上下文中不存在名称“DataManager”

 string connString =  ConfigurationManager.AppSettings["Sql"];
  

当前上下文中不存在名称“ConfigurationManager”

1 个答案:

答案 0 :(得分:0)

“ConfigurationManager”名称在当前上下文中不存在

你应该添加 using System.Configuration;

DataManager应该在 Microsoft.CommerceServer.Marketing 中,所以也要添加使用那个。