0% found this document useful (0 votes)
177 views

How To Configure Entity Framework Caching

The document discusses how to configure caching with Entity Framework using the NCache caching provider. It involves making changes to the SSDL, application configuration file, and adding references and configuration settings. The key steps are to override the provider attributes in SSDL to use the NCache provider, specify the NCache provider in the connection string, add the NCache provider factory, and configure app settings for logging. The NCache provider acts as a wrapper between Entity Framework and the database to cache query results for improved performance.

Uploaded by

John Collins
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
177 views

How To Configure Entity Framework Caching

The document discusses how to configure caching with Entity Framework using the NCache caching provider. It involves making changes to the SSDL, application configuration file, and adding references and configuration settings. The key steps are to override the provider attributes in SSDL to use the NCache provider, specify the NCache provider in the connection string, add the NCache provider factory, and configure app settings for logging. The NCache provider acts as a wrapper between Entity Framework and the database to cache query results for improved performance.

Uploaded by

John Collins
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

HOW TO: How to Configure Entity Framework Caching?

Caching with Entity Framework:


The Entity Framework is a set of technologies in ADO.NET that support the development of data-oriented software applications. With the Entity Framework, developers can work at a higher level of abstraction when they deal with data, and can create and maintain data-oriented applications with less code than in traditional applications. NCache introduces the caching provider which acts between Entity Framework and the Data source. The major reason behind the EF Caching provider is to reduce database trips (which slow down application performance) and serve the query result from the cache. The provider acts in between the ADO.NET entity framework and the original data source. Therefore caching provider can be plugged without changing/compiling the current code.

Integration Modes:
NCache Entity Framework Caching provider works under two modes. It can either be in "Caching" or in "Analysis" mode. In caching mode you can cache result-set of selected queries or you can have a CacheAll option where result of all SELECT queries will be cached automatically. Analysis mode works in pass-through mode and helps you find the queries that you should cache by generating a report showing which queries are being called with what frequency. For more help on Integration Modes

Database Synchronization:
NCache Entity Framework provider also ensures that data in cache is always synchronized with the database. Therefore NCache uses .NET SqlCacheDependeny which registers a SQL query with SQL Server so if any row in the dataset represented by this query is changed in the database, SQL Server throws an event notification to NCache. NCache then removes the corresponding result-set from the cache.

How to Integrate NCache with Entity Framework:


Prerequisites:
1. You should have an Entity Framework application. (you can also use sample application for EFCaching from NCache sample applications from the following path:"Installeddirectory:/ProgramFiles/NCache/samples/clr20/EntityDataModelIntegrationDemo" In every Entity Framework application, ADO.NET Entity Data Model is already added which automatically generates two files:

SSDL Application (or web) configuration file 2. Microsoft Visual Studio 2008 with SP1. 3. Database Tool (e.g. MS SQL SERVER 2005, ORACLE)

Steps to Enable NCache Caching:


Step 1: Add Reference:
Add "Alachisoft.Integrations.EntityFramework.CachingProvider" reference to your Entity Framework application. This .dll file is placed on the following path: "Installeddirectory:/ProgramFiles/NCache/integration/MSEntityFramework". After adding the reference, changes are required in 3 different files:

Step 2: SSDL Configurations:


In SSDL file which is generated on adding ADO.NET Entity Data Model in Entity Framework application, required following changes: [Below is the Sample change for Sql 2005 database] In SSDL, the provider name is specified in the Provider attribute of the <Schema/> element as shown below:

[Existing Code]
<Schema Namespace = "NorthwindModel.Store" Alias = "Self" Provider = "System.Data.SqlClient"ProviderManifestToken = "2005" xmlns:store ="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns ="http://schemas.microsoft.com/ado/2006/04/edm/ssdl">

In order to inject our NCache Entity frame Provider, we need to override the above highlighted attributes to plugin our provider. In SSDL, we put the name of the new provider in the Provider attribute and concatenate the previous provider with our provider manifest token in theProviderManifestToken field, as shown below:

[Changed Code]

<Schema Namespace = "NorthwindModel.Store" Alias = "Self" Provider = "Alachisoft.Integrations.EntityFramework.CachingProvider" ProviderManifestToken = "System.Data.SqlClient;2005" xmlns:store = "http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns = "http://schemas.microsoft.com/ado/2006/04/edm/ssdl">

Step 3: Application (or web) Configurations:


Application (or web) configuration file which is generated on adding ADO.NET Entity Data Model in Entity Framework application, required following changes: 1. Provider invariant name is also specified in the connection string of application (or web) configuration file:

[Existing Code]

<connectionStrings> <add name = "NorthwindEntities" connectionString = "metadata=res:///EF.csdl|res:///EF.ssdl|res:///EF.msl; provider= System.Data.SqlClient; provider connection string= &quot; Data Source=QCTEST2;Initial Catalog=Northwind;Integrated Security=True;MultipleActiveResultSets=True &quot; "providerName = "System.Data.EntityClient"/> </connectionStrings>

Change provider name for our NCache Entity framework Provider and add provider wrapper information in provider connection string:

[Changed Code]

<connectionStrings> <add name = "NorthwindEntities" connectionString = " metadata=res:///EF.csdl|res:///EF.ssdl|res:///EF.msl; provider= Alachisoft.Integrations.EntityFramework.CachingProvider; provider connection string= &quot; wrappedProvider=System.Data.SqlClient; Data Source=QCTEST2;Initial Catalog=Northwind;Integrated Security=True;MultipleActiveResultSets=True &quot;"providerName = "System.Data.EntityClient"/> </connectionStrings>

2.

Also add the provider factory for initialization of NCache Entity framework Provider. The invariant attribute should be the same as the provider name in connection string and SSDL. <DbProviderFactories> <add name = "EF Caching Data Provider" invariant = "Alachisoft.Integrations.EntityFramework.CachingProvider" description= "Caching Provider Wrapper" type = "Alachisoft.NCache.Integrations.EntityFramework.EFCachingProviderFactory, Alachisoft.Integrations.EntityFramework.CachingProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cff5926ed6a53769"/>

3.

Following information should be added in appSettings of app.config/web.config: <appSettings> <add key = "app-id" value = "PersonNameApp2"/> <add key = "logging-level" value = "Debug"/> </appSettings>

1. App-id : This will be the identifier for current application. This ID will be used to read configuration from efcaching.ncconf 2. Logging-level : Determine the logging level for application. Our provider will log exceptions and errors only when level is set to Error. When the level is set to Debug, both exceptions/errors and other detailed information will be logged. Nothing will be logged if level is set to Off (default). Path at which log files will be generated: Default =<install-dir> /log-files/efcaching-logs/ 3. For applying the above changes, application should be restarted after these changes are made NOTE: App-id for efcaching.ncconf should be same as in application (app.config) otherwise it will prompt an error)

You might also like