Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public JsonResult GetEvents(double start, double end)
{
    var userName = Session["UserName"] as string;
    if(string.IsNullOrEmpty(userName))
    {
        return null;
    }
    var fromDate = ConvertFromUnixTimestamp(start);
    var toDate = ConvertFromUnixTimestamp(end);
    var rep = Resolver.Resolve<IEventRepository>();
    var events = rep.ListEventsForUser(userName,fromDate,toDate);
    var eventList = from e in events
                    select new {
                                id = e.Id,
                                title = e.Title,
                                start = e.FromDate.ToString("s"),
                                end = e.ToDate.ToString("s"),
                                allDay = false
                            };
    var rows = eventList.ToArray();
    return Json(rows,JsonRequestBehavior.AllowGet);           
}

I have gotten this code from this blog and am trying to make sense of it. What I would like to do is use the fullcalendar code to retrieve events from a database and allow users to add them to a database using C# and Razor. I think this code is close to what I would like in that it is creating the JSON object on the fly, but I need to adapt it to use SQL and C#. Can anyone help with this please?

share|improve this question

1 Answer

up vote 3 down vote accepted

It's grabbing an instantiation of IEventRepository from the kernel/resolver of a dependency injection framework. Elsewhere in the code/configuration, there will be instructions for the resolver regarding what kind of object should be instantiated when asked for an object of type IEventRepository. Without seeing that code, it's anyone's guess as to what is being handed back from that call, other than it satisfies the interface IEventRepository. Likely, there's only one or two classes that implement IEventRepository. Find them!

If you want to read up on DI, I like the ninject docs, but this particular code doesn't look like ninject.

share|improve this answer
OK, I'm guessing that in this case I can execute a kind of workaround to achieve what I wish then. I could do away with this code, initiate a connection to my database and then loop around finding events for a particular user and storing the data produced in the eventList array? Do you think this is feasible for what I wish to do? – Simon Kiely Feb 23 '12 at 12:23
Yes, probably, but why the aversion to LINQ? – spender Feb 23 '12 at 12:27
What is LINQ? To be honest I have never even heard of this; I have no idea how I would use it in my case. – Simon Kiely Feb 23 '12 at 14:10

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.