mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
f8be43a486
Updated to latest WebActivator.
29 lines
704 B
C#
29 lines
704 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
using System.Data.SqlServerCe;
|
|
using System.Text;
|
|
using MvcMiniProfiler;
|
|
using MvcMiniProfiler.Data;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
class PetaDbProviderFactory : DbProviderFactory
|
|
{
|
|
public Boolean IsProfiled { get; set; }
|
|
|
|
public override DbConnection CreateConnection()
|
|
{
|
|
var sqliteConnection = new SqlCeConnection();
|
|
DbConnection connection = sqliteConnection;
|
|
|
|
if (IsProfiled)
|
|
{
|
|
connection = new ProfiledDbConnection(sqliteConnection, MiniProfiler.Current);
|
|
}
|
|
|
|
return connection;
|
|
}
|
|
}
|
|
}
|