mirror of
https://github.com/Radarr/Radarr
synced 2025-01-31 20:03:06 +00:00
Fixed: Another IDisposable leak when lazy loading properties.
This commit is contained in:
parent
cd520b0341
commit
3ef224ed1d
2 changed files with 4 additions and 2 deletions
0
debian/rules
vendored
Executable file → Normal file
0
debian/rules
vendored
Executable file → Normal file
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Data.Common;
|
||||
|
@ -91,9 +91,11 @@ private void PrepareLazyLoadedProperties(object ent)
|
|||
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…
Reference in a new issue