How to send a Complex Object( Which may have huge data) to a Web API Get Method? I know I can user \'FromUri\' option, but since the data is too large I can\'t use that opti
How to send a Complex Object( Which may have huge data) to a Web API Get Method?
You can't. GET methods do not have request body. You have to send everything in the query string which has limitations.
You should use POST instead.