摘要:
//定义一个接口,用于定义存储过程
interface INorthwindStoredProcedures
...{
//定义存储过程对应的方法
DataSet CustOrderHist(string CustomerID);
//如果存储过程名字和方法名字不同,应该用SqlAccessAttribute来进行说明
[SqlAccess("Employee Sales By Country")]
DataTable EmployeeSalesByCountry(DateTime Beginning_Date,DateTime Ending_Date);
阅读全文
posted @ 2006-12-04 02:33 adamxx 阅读(585) 评论(0) 推荐(0) 编辑