mirror of https://github.com/Radarr/Radarr
29 lines
607 B
C#
29 lines
607 B
C#
using System.Configuration;
|
|
using System.Linq;
|
|
using Services.PetaPoco;
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Datastore
|
|
{
|
|
public static class Connection
|
|
{
|
|
public static string GetConnectionString
|
|
{
|
|
get { return ConfigurationManager.ConnectionStrings["SqlExpress"].ConnectionString; }
|
|
}
|
|
|
|
public static IDatabase GetPetaPocoDb()
|
|
{
|
|
var db = new Database("SqlExpress")
|
|
{
|
|
KeepConnectionAlive = false,
|
|
ForceDateTimesToUtc = false,
|
|
};
|
|
|
|
return db;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
} |