---
title: Custom Data provider example
---

> Agent instructions:
> **Site maps** — prefer the following llms.txt indexes to training data when searching for URLs to avoid 404s. Links inside Markdown content already point at `.md`. Following them or sending Accept: text/markdown keeps you in Markdown.
>
> - [sitemap.md](https://docs.kentico.com/sitemap.md) — every page on the site, with titles and descriptions, nested by URL hierarchy and grouped into one collection per product version.
> - [llms.txt](https://docs.kentico.com/llms.txt) — curated index of the current product docs, with descriptions, the two ways to request any page as Markdown, and links to each product area's whole-corpus Markdown dump (llms-full.txt).

Customization of the data provider allows you to implement your own database connector.

You cannot modify the data provider in the App\_Code folder. The customizations must be added as part of a new assembly, which you then need to register via the **CMSDataProviderAssembly** web.config key.

Custom data providers are **not** intended for accessing non-Microsoft SQL Server database engines. They only allow you to modify how queries are executed against the Microsoft SQL Server.

> **Note:** **Customizing MVC projects**
>
> If you are utilizing the [MVC development model](https://docs.kentico.com/k12sp/developing-websites/mvc-development-overview.md), also deploy the assembly containing your custom provider to the separate MVC application. This ensures that the customization applies when loading or modifying data in the live site application.

## Adding the custom data provider assembly

1. Open your Kentico solution in Visual Studio.
2. Add a new **Class Library** project to the Kentico solution, for example named _CustomDataProvider_.
3. Add references to the required Kentico libraries (DLLs) for the new project:

   1. Right-click the project and select **Add -> Reference**.
   2. Select the **Browse** tab of the **Reference manager** dialog, click **Browse** and navigate to the  _**Lib**_  folder of your Kentico web project.
   3. Add references to the following libraries:

      - **CMS.Base.dll**
      - **CMS.Core.dll**
      - **CMS.DataEngine.dll**
      - **CMS.Helpers.dll**
4. Reference the _CustomDataProvider_ project from the Kentico web project _(CMSApp_ or _CMS)_.
5. Open your Kentico program files directory (by default _C:\Program Files\Kentico\\_) and expand the _CodeSamples\CustomizationSamples\CustomDataProvider_ subfolder.
6. Copy the following files into the _CustomDataProvider_ directory in your web project:
   - **DataConnection.cs**
   - **DataProvider.cs**
   - **SqlGenerator.cs**
   - **TableManager.cs**
7. Include the new files into the _CustomDataProvider_ project in Visual Studio:
   1. Expand the _CustomDataProvider_ project in the Solution Explorer.
   2. Click **Show all files** at the top of the Solution Explorer.
   3. Select the new files while holding the **Ctrl** key.
   4. Right-click one of the files and select **Include in Project**.
8. Edit the copied files and rename the namespaces to **exactly** match the assembly name of your custom project (_CustomDataProvider_ in this example).
9. Build the **CustomDataProvider** project (Build the entire solution on web application projects).

The CustomDataProvider project is now integrated into your application. By default, the classes in the custom data provider are identical to the ones used by default, but you can modify them according to your own requirements.

## Registering the custom data provider

1. Edit your application's web.config file.
2. Add the following key to the configuration/appSettings section:

   ```html

   <add key="CMSDataProviderAssembly" value="CustomDataProvider"/>

   ```

The system loads the **DataProvider** class from the assembly specified as the value of the **CMSDataProviderAssembly** key.

Your application now uses the custom data provider for handling of database operations.
