使用RestSharp我正在构建一个API,在给定数据类型/对象的情况下执行CRUD操作。
我的 CrudAbstract
类是通用的,具有以下内容:
public virtual async Task<keyType> Post(dto item)
{
try
{
var request = await _client.GetRequestAsync(_path);
request.Method = RestSharp.Method.POST;
request.AddJsonBody(item);
var result = await _client.ExecuteRequestAsync<keyType>(request);
return result;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
throw new Exception("Was not able to process crud post operation.");
}
我的 WebClient
类有以下内容:
Entities = new CrudAbstract<DtoEntity, int>("/entities", this); // in constructor
// So the keyType from definition above is int (Int32)
此课程中的post方法是
public async Task<T> ExecuteRequestAsync<T>(IRestRequest request)
{
try
{
var response = await GetClient().ExecuteTaskAsync<T>(request);
// Exception occurs here. The above statement is unable to finish.
var data = response.Data;
return data;
}
catch (Exception e)
{
// Log exception
}
throw new Exception("Was not able to process restclient execute async method.");
}
我的Api EntitiesController
包含以下内容:
public int Post(DtoEntity value)
{
using (var db = // some database...)
{
try
{
// Upsert object into database here
//... value.Id no longer null at this point
/*
The problem occurs here. I only want to return the ID of the object
(value.Id). I do not want to return the whole object (value)
*/
return value.Id;
}
catch (Exception e)
{
// Log exception
}
}
throw new Exception("Was not able to process entities post method.");
}
我得到的例外是:
无法将“System.Int64”类型的对象强制转换为类型 'System.Collections.Generic.IDictionary`2 [System.String,System.Object的]'。
这基本上是说它无法将对象int
(我在value.Id
的帖子中返回)转换为DtoEntity
对象(这是实际的对象) CRUD操作已经完成。)
我做错了什么?
我已将typeof
和.getType()
放置在每个keyType
,T
和value.Id
上,所有这些都是Int32
。是否在RestSharp库中出现问题?在某个阶段,行中有int
到DtoEntity
的投射:
var response = await GetClient().ExecuteTaskAsync<T>(request);
注意:当我将控制器中post方法的返回类型更改为DtoEntity
并将value.Id
更改为value
时,它可以正常工作。收到response
,response.Data
是DtoEntity
对象。
我见过类似问题here但尚未找到解决方案。
答案 0 :(得分:3)
我相信您在RestSharp中发现了一个错误。 RestSharp在内部使用一个名为SimpleJson的JSON解析器(从Facebook .NET SDK借用)。看来这个解析器正确地将响应体反序列化为一个数字(因为JSON是无类型的,它使用Int64是安全的),但RestSharp的JsonDeserializer class尝试将此结果转换为{{1}在这个方法的第一行:
IDictionary
我认为你的选择是: