0

文字列 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)
                   {



                   }

               });

上記の呼び出しで、response.statuscode を ExpectationFailed として取得し、response.Content は次のとおりです。

実際、私の wcf サービスは EF を使用します。これは実際に dynamicsql を持つ SP を呼び出して結果セットを返します。これは SP の動的 SQL の bcos です。functionImports と Complextype を作成しました。また、Restclient の代わりに Webclient を使用すると、Restcall が機能します。ただし、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 
4

0 に答える 0