我有這樣的休息-DSL: // this api creates new user
rest("/user")
.post()
.type(User.class).to("jpa://com.project.User")
這是我的實體: public class User{
@Id
private String id;
@ManyToOne
我有控制器可以接收SearchProfilesModel的對象。它由SearchProfiles數組和基類中的幾個屬性組成。 方法: [HttpGet]
[ResponseType(typeof(List<UserSearchResult>))]
[Route("SearchWithParams")]
public async Task<HttpResponseMessage>
S