I have this code inside a Controller
[HttpPost]
public ActionResult Index([DataSourceRequest]DataSourceRequest request)
{
    var tickets = db.Tickets.Include(t => t.AreaOfBusiness).Include(t => t.Assignee).Include(t => t.Severity).Include(t => t.TicketStatu);
    return this.Json(tickets.ToDataSourceResult(request));
}
but I get
A circular reference was detected while serializing an object of type 'System.Data.Entity.DynamicProxies.Ticket_2B104FE45830306408DA130C08090F61ADA6B8A0106592FECE85087B94B
when launching KendoGrid.
I read that NewtonSoft Json.Net can handle Circular Reference. I cannot understand how to use it.
Can you help me modify the code in order to use the Json.Net?
Thanx in advance!
ToDataSourceResult?