RestSharp在Entity Framework中抛出错误

时间:2013-09-04 05:57:32

标签: wcf entity-framework c#-4.0 wcf-rest restsharp

string URL =" https://sampleservicebus.servicebus.windows.net/WinPhoneService/"

RestClient client = new RestClient(URL);
     RestRequest request = new RestRequest("getkpimeasuredata", Method.POST);
               KpiDomainData kpidata = new KpiDomainData();
               kpidata.KPIId = 1006;
               kpidata.ScorecardId = 3;
               kpidata.EngineeringOrgId = 11;
               kpidata.DataValuetypeId = 1;
               kpidata.CumulativeMonth = 463;
               kpidata.BusinessOrgId = 1;

               string json = Newtonsoft.Json.JsonConvert.SerializeObject(kpidata);


               json = "{\"kpidata\" : " + json + "}";

               request.AddParameter("application/json; charset=utf-8", json, ParameterType.RequestBody);
               request.RequestFormat = DataFormat.Json;

               ObservableCollection<KpiMeasureData> kpiDetailsList = await client.ExecuteTaskAsync<ObservableCollection<KpiMeasureData>>(request);


               client.ExecuteAsync(request, response =>
               {
                   if (response.StatusCode == HttpStatusCode.OK)
                   {



                   }

               });

在响应中的上述调用中获取响应.statuscode为ExpectationFailed 和response.Content如下

实际上我的wcf服务使用EF实际调用一个具有dynamicsql的SP来返回结果集..这是SP中动态sql的这个bcos.I创建了functionImports和Complextype。当我使用时,Restcall工作Webclient而不是Restclient 。但我只需要使用Restclient ...请帮忙......

   {"ErrorCode":"1001","ErrorMessage":"System.Data.EntityCommandExecutionException: The data reader is incompatible with the specified 'ScaasModel.GetKPIMeasureData_Result'. A member of the type, 'ParamName', does not have a corresponding column in the data reader with the same name.\u000d\u000a   at System.Data.Query.InternalTrees.ColumnMapFactory.GetColumnMapsForType(DbDataReader storeDataReader, EdmType edmType, Dictionary`2 renameList)\u000d\u000a   at System.Data.Query.InternalTrees.ColumnMapFactory.CreateColumnMapFromReaderAndType(DbDataReader storeDataReader, EdmType edmType, EntitySet entitySet, Dictionary`2 renameList)\u000d\u000a   at 

0 个答案:

没有答案