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?