在等待响应时,RestSharp无法强制转换对象

时间:2015-03-03 04:35:30

标签: c# rest restsharp

使用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()放置在每个keyTypeTvalue.Id上,所有这些都是Int32。是否在RestSharp库中出现问题?在某个阶段,行中有intDtoEntity的投射:

var response = await GetClient().ExecuteTaskAsync<T>(request);

注意:当我将控制器中post方法的返回类型更改为DtoEntity并将value.Id更改为value时,它可以正常工作。收到responseresponse.DataDtoEntity对象。

我见过类似问题here但尚未找到解决方案。

1 个答案:

答案 0 :(得分:3)

我相信您在RestSharp中发现了一个错误。 RestSharp在内部使用一个名为SimpleJson的JSON解析器(从Facebook .NET SDK借用)。看来这个解析器正确地将响应体反序列化为一个数字(因为JSON是无类型的,它使用Int64是安全的),但RestSharp的JsonDeserializer class尝试将此结果转换为{{1}在这个方法的第一行:

IDictionary

我认为你的选择是:

  • 向RestSharp团队提出问题。
  • 获取原始弦体并将其自身投射到一个int(可能是阻力最小的路径)。
  • 尝试使用其他库。