Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Problem: I'm using MVC4 WebAPI and am throwing an error during a Get() call.

Error: System.ArgumentException {"ExceptionType":"System.ArgumentException","Message":"Type 'Comments2.Controllers.CommentsController' does not have a default constructor", "StackTrace":"
at System.Linq.Expressions.Expression.New(Type type)\r\n at System.Web.Http.Internal.TypeActivator.Create[TBase](Type instanceType)\r\n at System.Web.Http.Dispatcher.DefaultHttpControllerActivator.Create(HttpRequestMessage request, HttpControllerDescriptor controllerDescriptor, Type controllerType)"}

I'm happy to give any code required simply let me know what you'd like to see.

Controller:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Formatting;
using Comments2.Models;
using System.Web.Http;
//using Comments2.Filters;

namespace Comments2.Controllers 
{
    //[Authorize]
    public class CommentsController : ApiController 
    {
        ICommentRepository repository;

    public CommentsController(ICommentRepository repository) 
    {
        this.repository = repository;
    }

    #region GET
    [Queryable]
    public IQueryable<Comment> GetComments()
    {
        return repository.Get().AsQueryable();
    }

    public Comment GetComment(int id)
    {
        Comment comment;
        if (!repository.TryGet(id, out comment))
            throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound));
        return comment;
    }
    #endregion
}

get.js calls the data:

$(function() {
    $("#getComments").click(function () {
        // We're using a Knockout model. This clears out the existing comments.
        viewModel.comments([]);

        $.get('/api/comments', function (data) {
            // Update the Knockout model (and thus the UI) with the comments received back 
            // from the Web API call.
            viewModel.comments(data);
        });

    });
});
share|improve this question
1  
Did you properly set up a DI container, and launched it from the application start? Did you configure an instance of ICommentRepository to inject? – Leon Cullens Jul 15 '12 at 21:39
I have not. Would it be better to user Unity or Ninject? Those are the only two I'm interested in using, I understand the concept of IoC and DI but I'm trying to learn to use it with MVC4 and WebAPI ...do I just add that via NuGet? – Computer Guy Jul 15 '12 at 21:47

1 Answer

up vote 5 down vote accepted

It seams like you are using default implementation of HttpControllerActivator which will not work with dependency injection. Try this it integrates unity container to handle dependency but you can modify it to use any implementation of DI you want.

share|improve this answer
Why a down vote? DefaultHttpControllerActivator simply requires default constructor so you have to create your own and the cleanest solution to this is DI container. – Rafal Jul 16 '12 at 4:01
The link provided in Rafal's answer help guide me in the right direction. – Computer Guy Jul 16 '12 at 5:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.