How can I pass object parameter to get method? I searched a lot , for example how to pass parameters to asp.net web api get method?
Here It is mentioned that we should use [FromUri] but I could not see [FromUri] in .NET Core 2
[HttpGet]
public IHttpActionResult GetDetails([FromUri] RetrieveDetails  eDetails)
{}
following is the class
public class RetrieveDetails
{ 
    public string Name{ get; set; }     
    public string Type { get; set; } 
    public List<MoreDetails> MoreDetails { get; set; }
} 
public class MoreDetails  { 
  public string DetailName{ get; set; } 
}
But FromUri can not be used in .NET Core 2
 
    