Extend Sitefinity CMS data model: Create the provider class

After you create the fluent mappings, you create the custom provider class. 

Sitefinity's CMS architecture is based on the provider model design pattern, which provides a number of extensibility possibilities. The provider class in this example inherits from the OpenAccessPageProvider class that stores and retrieves page data. The exposed methods in the CustomPageProvider are used to create and retrieve objects from the database context.

To create the custom provider class, perform the following:

  1. In Visual Studio, open the context menu of the CustomTypes project and click Add » Class.
  2. Name the class file CustomPageProvider.cs and click Add.
  3. Make the CustomPageProvider class inherit the OpenAccessPageProvider class and implement the IOpenAccessMetadataProvider interface.
    IYou use the ContentProviderDecoratorAttribute to tell the provider class which data provider decorator to use.
  4. Implement the GetMetaDataSource method to return the CustomMetaDataSource.
  5. Implement the following operations:
    • Create custom type
    • Get custom type
    • Get custom types
    • Delete custom type

Use the following code sample:

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Web Security for Sitefinity Administrators

The free standalone Web Security lesson teaches administrators how to protect your websites and Sitefinity instance from external threats. Learn to configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?