DataTable.Select()方法的问题
在数据库里建一个视图。在后台连接数据库读取这个视图。将数据放到DataTable中。然后调用它的Select()方法,为什么报找不到列的错误,确定字段里之类。视图中都存在...
在数据库里建一个视图。在后台连接数据库读取这个视图。将数据放到DataTable中。
然后调用它的Select()方法,为什么报找不到列的错误,确定字段里之类。视图中都存在。
//获取视图数据
private DataTable GetQuestion(string exID)
{
DataTable dt = new DataTable();
V_Exa_QuestionList _V_Exa_QuestionList = new V_Exa_QuestionList();
_V_Exa_QuestionList.Where.CourseID.Value = "09222A";
_V_Exa_QuestionList.Where.CourseID.Operator = ZFSoft.WhereParameter.Operand.Equal;
_V_Exa_QuestionList.Where.ExamPaperID.Value = exID;
_V_Exa_QuestionList.Where.ExamPaperID.Operator = ZFSoft.WhereParameter.Operand.Equal;
_V_Exa_QuestionList.Query.AddResultColumn(V_Exa_QuestionList.ColumnNames.QuestionType);
_V_Exa_QuestionList.Query.Load();
if (_V_Exa_QuestionList.RowCount > 0)
{
dt = _V_Exa_QuestionList.DefaultView.Table;
}
return dt;
}
DataTable dt = GetQuestion(id);
//单选
//筛选
DataRow[] dr_dan = dt.Select(string.Format("{0}={1}", V_Exa_QuestionList.ColumnNames.QuestionType, "单选")); 展开
然后调用它的Select()方法,为什么报找不到列的错误,确定字段里之类。视图中都存在。
//获取视图数据
private DataTable GetQuestion(string exID)
{
DataTable dt = new DataTable();
V_Exa_QuestionList _V_Exa_QuestionList = new V_Exa_QuestionList();
_V_Exa_QuestionList.Where.CourseID.Value = "09222A";
_V_Exa_QuestionList.Where.CourseID.Operator = ZFSoft.WhereParameter.Operand.Equal;
_V_Exa_QuestionList.Where.ExamPaperID.Value = exID;
_V_Exa_QuestionList.Where.ExamPaperID.Operator = ZFSoft.WhereParameter.Operand.Equal;
_V_Exa_QuestionList.Query.AddResultColumn(V_Exa_QuestionList.ColumnNames.QuestionType);
_V_Exa_QuestionList.Query.Load();
if (_V_Exa_QuestionList.RowCount > 0)
{
dt = _V_Exa_QuestionList.DefaultView.Table;
}
return dt;
}
DataTable dt = GetQuestion(id);
//单选
//筛选
DataRow[] dr_dan = dt.Select(string.Format("{0}={1}", V_Exa_QuestionList.ColumnNames.QuestionType, "单选")); 展开
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询