---
title: "Entity Framework"
description: "Learn about Sentry's .NET integration with Entity Framework."
url: https://docs.sentry.io/platforms/dotnet/guides/entityframework/
---

# Entity Framework | Sentry for Entity Framework

Sentry provides an integration with `EntityFramework` through the of the [Sentry.EntityFramework NuGet package](https://www.nuget.org/packages/Sentry.EntityFramework).

> Looking for `EntityFramework Core`? If you're targeting .NET Core 3.1 or newer, that's already built in to the main Sentry .NET SDK. It's also enabled by default for our ASP.NET or ASP.NET Core integrations, even for older targets. For other scenarios, you may need to add the `Sentry.DiagnosticSource` package and call `AddDiagnosticSourceIntegration`, [as described here](https://docs.sentry.io/platforms/dotnet/tracing/instrumentation/automatic-instrumentation.md#diagnosticsource-integration). (The rest of this page describes our EF6 integration, not EFCore.)

## [Overview of the features](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#overview-of-the-features)

* Queries as breadcrumbs
* Validation errors

All queries executed are added as breadcrumbs and are sent with any event which happens on the same [scope](https://docs.sentry.io/platforms/dotnet/guides/entityframework/enriching-events/scopes.md). Besides that, validation errors are also included as `Extra`.

## [Features](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#features)

In addition to capturing errors, you can monitor interactions between multiple services or applications by [enabling tracing](https://docs.sentry.io/concepts/key-terms/tracing.md).

Select which Sentry features you'd like to install in addition to Error Monitoring to get the corresponding installation and configuration instructions below.

## [Install](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#install)

Error Monitoring\[ ]Tracing

```powershell
Install-Package Sentry.EntityFramework -Version 6.3.2
```

This package extends `Sentry` main SDK. That means that besides the EF features, through this package you'll also get access to all API and features available in the main `Sentry` SDK.

## [Configuration](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#configuration)

Add the Entity Framework 6 support to your project in one step:

* When initializing the SDK, call the extension method `AddEntityFramework()` on `SentryOptions`. This will register all error processors to extract extra data, such as validation errors, from the exceptions thrown by Entity Framework.

### [Example configuration](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#example-configuration)

For example, configuring an ASP.NET app with *global.asax*:

`global.asax`

```csharp
using System;
using System.Configuration;
using Sentry.AspNet;

public class MvcApplication : System.Web.HttpApplication
{
    private IDisposable _sentrySdk;

    protected void Application_Start()
    {
        _sentrySdk = SentrySdk.Init(options =>
        {
            // We store the DSN inside Web.config
            options.Dsn = ConfigurationManager.AppSettings["SentryDsn"];
            // Adds request URL and headers, IP and name for users, etc.
            options.SendDefaultPii = true;
            // ___PRODUCT_OPTION_START___ performance
            // Set traces_sample_rate to 1.0 to capture 100% of transactions for performance monitoring.
            // We recommend adjusting this value in production.
            options.TracesSampleRate = 1.0;
            // ___PRODUCT_OPTION_END___ performance
            // Add the EntityFramework integration
            options.AddEntityFramework();
        });
    }

    // Global error catcher
    protected void Application_Error() => Server.CaptureLastError();

    // ___PRODUCT_OPTION_START___ performance
    protected void Application_BeginRequest()
    {
        Context.StartSentryTransaction();
    }

    protected void Application_EndRequest()
    {
        Context.FinishSentryTransaction();
    }

    // ___PRODUCT_OPTION_END___ performance
    public override void Dispose()
    {
        _sentrySdk.Dispose();
        base.Dispose();
    }
}
```

## [Verify](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#verify)

This snippet includes an intentional error, so you can test that everything is working as soon as you set it up.

```csharp
try
{
    throw null;
}
catch (Exception ex)
{
    SentrySdk.CaptureException(ex);
}
```

## [Sample](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#sample)

Check out a complete working [sample](https://github.com/getsentry/sentry-dotnet-ef/tree/master/samples/Sentry.Samples.AspNet.Mvc) to see it in action.

## [Next Steps](https://docs.sentry.io/platforms/dotnet/guides/entityframework.md#next-steps)

* Explore [practical guides](https://docs.sentry.io/guides.md) on what to monitor, log, track, and investigate after setup

## Other .NET Frameworks

- [.NET for Android](https://docs.sentry.io/platforms/dotnet/guides/android.md)
- [.NET for iOS, macOS, and Mac Catalyst](https://docs.sentry.io/platforms/dotnet/guides/apple.md)
- [ASP.NET](https://docs.sentry.io/platforms/dotnet/guides/aspnet.md)
- [ASP.NET Core](https://docs.sentry.io/platforms/dotnet/guides/aspnetcore.md)
- [AWS Lambda](https://docs.sentry.io/platforms/dotnet/guides/aws-lambda.md)
- [Azure Functions](https://docs.sentry.io/platforms/dotnet/guides/azure-functions-worker.md)
- [Blazor Interactive SSR](https://docs.sentry.io/platforms/dotnet/guides/blazor-server.md)
- [Blazor WebAssembly](https://docs.sentry.io/platforms/dotnet/guides/blazor-webassembly.md)
- [Google Cloud Functions](https://docs.sentry.io/platforms/dotnet/guides/google-cloud-functions.md)
- [log4net](https://docs.sentry.io/platforms/dotnet/guides/log4net.md)
- [MAUI](https://docs.sentry.io/platforms/dotnet/guides/maui.md)
- [Microsoft.Extensions.Logging](https://docs.sentry.io/platforms/dotnet/guides/extensions-logging.md)
- [NLog](https://docs.sentry.io/platforms/dotnet/guides/nlog.md)
- [Serilog](https://docs.sentry.io/platforms/dotnet/guides/serilog.md)
- [Windows Forms](https://docs.sentry.io/platforms/dotnet/guides/winforms.md)
- [WinUI](https://docs.sentry.io/platforms/dotnet/guides/winui.md)
- [WPF](https://docs.sentry.io/platforms/dotnet/guides/wpf.md)
- [Xamarin](https://docs.sentry.io/platforms/dotnet/guides/xamarin.md)

## Topics

- [Capturing Errors](https://docs.sentry.io/platforms/dotnet/guides/entityframework/usage.md)
- [Enriching Events](https://docs.sentry.io/platforms/dotnet/guides/entityframework/enriching-events.md)
- [Extended Configuration](https://docs.sentry.io/platforms/dotnet/guides/entityframework/configuration.md)
- [Logs](https://docs.sentry.io/platforms/dotnet/guides/entityframework/logs.md)
- [Data Management](https://docs.sentry.io/platforms/dotnet/guides/entityframework/data-management.md)
- [Tracing](https://docs.sentry.io/platforms/dotnet/guides/entityframework/tracing.md)
- [Security Policy Reporting](https://docs.sentry.io/platforms/dotnet/guides/entityframework/security-policy-reporting.md)
- [Crons](https://docs.sentry.io/platforms/dotnet/guides/entityframework/crons.md)
- [Migration Guide](https://docs.sentry.io/platforms/dotnet/guides/entityframework/migration.md)
- [User Feedback](https://docs.sentry.io/platforms/dotnet/guides/entityframework/user-feedback.md)
- [Metrics](https://docs.sentry.io/platforms/dotnet/guides/entityframework/metrics.md)
- [Unit Testing](https://docs.sentry.io/platforms/dotnet/guides/entityframework/unit-testing.md)
- [Legacy SDK](https://docs.sentry.io/platforms/dotnet/guides/entityframework/legacy-sdk.md)
- [Troubleshooting](https://docs.sentry.io/platforms/dotnet/guides/entityframework/troubleshooting.md)
