Lists
This section provides you with an overview of the Lists Module API in Sitefinity and guides you through the common tasks when working with lists.
The Lists Module allows users to create lists such as FAQ and contact details. Sitefinity uses ListItem to present the items in the list.
Sitefinity back-end provides you with a user-friendly interface to create lists. You can also create lists programmatically using the Native or Fluent APIs.
The section contains the following:
-
Managing lists
Describes how to create, query, search, modify and delete lists using Native or Fluent API.
-
Managing list items
Describes how to create, query, search, modify and delete list items inside a list using Native or Fluent API.
To manage lists through Lists Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Lists.Model;
using Telerik.Sitefinity.Modules.Lists;
using Telerik.Sitefinity.Workflow;
To manage lists through Lists Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Lists.Model;
using Telerik.Sitefinity.Workflow;
See Also