Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/cb19fd3ea6a2d12c1d6a7cad17434501b33ba41c?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

DataMapper LazyLoaded needlessly keeping the parent mapper alive.

pull/583/head
Taloth Saldono 6 years ago committed by Qstick
parent 38507e6eb0
commit cb19fd3ea6

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Data.Common;
@ -91,9 +91,11 @@ namespace Marr.Data.Mapping
Type entType = ent.GetType();
if (_repos.Relationships.ContainsKey(entType))
{
var provider = _db.ProviderFactory;
var connectionString = _db.ConnectionString;
Func<IDataMapper> dbCreate = () =>
{
var db = new DataMapper(_db.ProviderFactory, _db.ConnectionString);
var db = new DataMapper(provider, connectionString);
db.SqlMode = SqlModes.Text;
return db;
};

Loading…
Cancel
Save