Events Facade...

Posted by Community Admin on 04-Aug-2018 21:12

Events Facade...

All Replies

Posted by Community Admin on 13-Feb-2011 00:00

Bit of a typo on the methods :)

App.WorkWith().Events().PublihedOrShceduled
App.WorkWith().Events().Publihed

Posted by Community Admin on 13-Feb-2011 00:00

As a side note, how would I go about using the FluentAPI to get events inside a category?

Posted by Community Admin on 16-Feb-2011 00:00

Hello Steve,

Ok I fixed the type. As for the second request, there is no API that you can use to get the filtered list of items directly. You should know the Taxon id

var categoryid = new Guid("");
var content = App.WorkWith()
              .Events()
              .Where(ei=> ((IList<Guid>)ei.GetValue("Category")).Contains(categoryid));


Kind regards,
Ivan Dimitrov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

Posted by Community Admin on 16-Feb-2011 00:00

Will we ever get a method for fluent like this?

var content = App.WorkWith()
              .Events()
              .InCategory("whatever")
              .WithTags("BLAH").Get();

Posted by Community Admin on 16-Feb-2011 00:00

Hi Steve,

It is added for future implementation, but we have not stared working on this.

Greetings,
Ivan Dimitrov
the Telerik team

This thread is closed