本文整理汇总了C#中BankLoanSystem.DAL.DataHandler.GetDataSetBySQL方法的典型用法代码示例。如果您正苦于以下问题:C# DataHandler.GetDataSetBySQL方法的具体用法?C# DataHandler.GetDataSetBySQL怎么用?C# DataHandler.GetDataSetBySQL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BankLoanSystem.DAL.DataHandler
的用法示例。
在下文中一共展示了DataHandler.GetDataSetBySQL方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetAllAccrualMethods
/// <summary>
/// CreatedBy:Piyumi
/// CreatedDate:2016/2/5
/// get all accrual methods to a list
/// </summary>
/// <returns>methodList</returns>
public List<AccrualMethods> GetAllAccrualMethods()
{
List<AccrualMethods> methodList = new List<AccrualMethods>();
DataHandler dataHandler = new DataHandler();
DataSet dataSet = dataHandler.GetDataSetBySQL("spGetAllAccrualMethods");
if (dataSet != null && dataSet.Tables.Count != 0)
{
foreach (DataRow dataRow in dataSet.Tables[0].Rows)
{
AccrualMethods methods = new AccrualMethods()
{
MethodId = Convert.ToInt32(dataRow["accrual_method_id"]),
MethodName = dataRow["accrual_method_name"].ToString()
};
methodList.Add(methods);
}
return methodList;
}
else
{
return null;
}
//using (var con = new SqlConnection(ConfigurationManager.ConnectionStrings["AutoDealersConnection"].ToString()))
//{
// var command = new SqlCommand("spGetAllAccrualMethods", con) { CommandType = CommandType.StoredProcedure };
// con.Open();
// using (var reader = command.ExecuteReader())
// {
// while (reader.Read())
// {
// AccrualMethods methods = new AccrualMethods()
// {
// MethodId = Convert.ToInt32(reader["accrual_method_id"]),
// MethodName = reader["accrual_method_name"].ToString()
// };
// methodList.Add(methods);
// }
// }
//}
//return methodList;
}