博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#写webservice服务引用
阅读量:5041 次
发布时间:2019-06-12

本文共 2250 字,大约阅读时间需要 7 分钟。

 

我在自己试着写了一个sqlhelper以后,在这个项目的基础上写了一个webservice的服务引用。由于是第一次写,也只是观摩着别人的写。

首先在新建了一个web服务文件。

public  SqlWhhWebService1()        {            InitializeComponent();        }        #region Component Designer generated code        //Required by the Web Services Designer         private IContainer components = null;        ///         /// Required method for Designer support - do not modify        /// the contents of this method with the code editor.        ///         private void InitializeComponent()        {        }        ///         /// Clean up any resources being used.        ///         protected override void Dispose(bool disposing)        {            if (disposing && components != null)            {                components.Dispose();            }            base.Dispose(disposing);        }        #endregion

然后自己调用自己的sqlhelper类中的方法,实现对数据的基本操作,其实和我们在bll中的调用一样,只不过通过[WebMethod]把自己所定义的方法暴露出来供外部调用,[WebMethod(Description="添加操作")]中的Description属性标注了对改方法的作用,同时在weiservice页面中显示出来。

View Code
1  [WebMethod(Description="添加操作")] 2         public ResultModel AddData(string sql, SqlParameter[] sp) 3         { 4             return WhhSqlHelper.Intersql(sql, sp); 5         } 6         ///  7         /// 执行更新操作 8         ///  9         /// 10         /// 11         /// 
12 [WebMethod(Description = "修改操作")]13 public ResultModel Updata(string sql,SqlParameter[] sp)14 {15 return WhhSqlHelper.UpdateSql(sql, sp);16 }17 [WebMethod(Description = "查询操作")]18 public ResultModel selectSQL(string sql,SqlParameter[]sp)19 {20 return WhhSqlHelper.SingSelectSql(sql, sp);21 }22 [WebMethod(Description = "删除操作")]23 public ResultModel Delete(string sql,SqlParameter[] sp)24 {25 return WhhSqlHelper.DeleteSql(sql,sp);26 }27 [WebMethod(Description = "是否存在操作")]28 public ResultModel IsExistent(string sql, SqlParameter[] sp)29 {30 return WhhSqlHelper.IsExistent(sql, sp);31 }

这些只是对基本的数据操作的web调用,还可以针对一些公共功能给提炼出来进行web封装,比如说,不同表的增删改查,这些都可以的把封装到一起。

其中的 WhhSqlHelper是我写的一个sqlhelper类,ResultModel是我写的一个数据操作的返回实体Model.

转载于:https://www.cnblogs.com/qzzy/archive/2013/03/06/2946313.html

你可能感兴趣的文章
算法时间复杂度
查看>>
二叉树的遍历 - 数据结构和算法46
查看>>
类模板 - C++快速入门45
查看>>
centos7 搭建vsftp服务器
查看>>
RijndaelManaged 加密
查看>>
Android 音量调节
查看>>
HTML&CSS基础学习笔记1.28-给网页添加一个css样式
查看>>
windows上面链接使用linux上面的docker daemon
查看>>
Redis事务
查看>>
Web框架和Django基础
查看>>
python中的逻辑操作符
查看>>
CSS兼容性常见问题总结
查看>>
HDU 1548 A strange lift (Dijkstra)
查看>>
每天一个小程序—0005题(批量处理图片大小)
查看>>
C# 启动进程和杀死进程
查看>>
tcp实现交互
查看>>
IIS的各种身份验证详细测试
查看>>
JavaScript特效源码(3、菜单特效)
查看>>
聊聊、Zookeeper Linux 单服务
查看>>
Linux常用命令总结
查看>>