3
votes
2answers
24 views

Posting array of objects with MVC Web API

I have a basic post operation that works on a single object of RecordIem. What I would like to do is do the same action but in bulk by posting an array of requests using the same format. For ...
0
votes
1answer
21 views

Membership Providers

My first question is: Is there difference betwen apsnetmembershipprovider and simplemembershipprovider. I know that aspnetmembershipprovider is disgusting, because it always create temporary tables. ...
1
vote
1answer
43 views

“Cannot support querying” Controller Error

I was working through the following answer found here: Web API OData Inlinecount not working Here is my controller, with some dummy data being served. public class ValuesController : ApiController { ...
0
votes
1answer
47 views

Basic authentication in web api

I started working on Web Api and just want to create a simple basic authentication. I want to know how to do that? I tried with the given MSDN link but no step wise tutorial is given on MSDN. ...
2
votes
3answers
33 views

What's the correct HttpStatusCode to return for a required parameter that's missing? [duplicate]

I'm building a Web API method to check if a name is unique of that type and need to make sure the name parameter is given. What's the correct status code to return? public HttpResponseMessage ...