我正在尝试从我在Subsonic中编写的查询中返回一个数据表(我刚刚开始学习它) - 但是只能返回一个DataSet?
public DataTable GetAllCarTypes()
{
return new Query("tblCarType").ExecuteDataSet();
}
我希望.ExecuteDataTable()??
答案 0 :(得分:2)
如果您只从查询中返回1个表,则可以执行以下操作:
public DataTable GetAllCarTypes()
{
return new Query("tblCarType").ExecuteDataSet().Tables[0];
}
答案 1 :(得分:0)
啊哈哈......在你发帖之前应该考虑一下,觉得我现在有了它
public DataTable GetAllCarTypes()
{
return new Query("tblCarType").ExecuteDataSet().Tables[0];
}
如果没有,请您发布正确的语法