首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

WCF 如何让他执行一次啊

2013-04-02 
WCF 怎么让他执行一次啊。IGetEmployees.cs 页面[OperationContract][WebInvoke(Method GET,ResponseFo

WCF 怎么让他执行一次啊。
IGetEmployees.cs 页面

        [OperationContract]
        [WebInvoke(Method = "GET",
                   ResponseFormat = WebMessageFormat.Json,
                   RequestFormat = WebMessageFormat.Json,
                   BodyStyle = WebMessageBodyStyle.Wrapped,
                   UriTemplate = "json/SpecificationListCS/{hh_mnfBrand}")]
        void SpecificationListCS(string hh_mnfBrand);



GetEmployees.svc 页面

        public void SpecificationListCS(string hh_mnfBrand)
        {
            OemBLL oem = new OemBLL();
            oem.AddOemOemGroupName(hh_mnfBrand);
            //return false;
        }

GetEmployees.svc页面每次都要去执行两次方法,执行两次的话,添加语句的时候他每次都要添加两条数据到数据库中,怎么让他去执行一次啊。请高手指点一二啊。
wcf
[解决办法]
WebMessageBodyStyle.WrappedResponse,

热点排行