如何从MS SQL中的表中对项目进行分组?
I had been looking on this guide here
存在一些问题 DataManager.RetrieveProductsbySubCat().Tables[0].DefaultView
当前上下文中不存在名称“DataManager”
和
string connString = ConfigurationManager.AppSettings["Sql"];
当前上下文中不存在名称“ConfigurationManager”
答案 0 :(得分:0)
“ConfigurationManager”名称在当前上下文中不存在
你应该添加
using System.Configuration;
DataManager应该在 Microsoft.CommerceServer.Marketing 中,所以也要添加使用那个。