More work around using the PlexDatabase

This commit is contained in:
Jamie.Rees 2016-10-18 14:50:35 +01:00
commit dc92285cfa
8 changed files with 265 additions and 14 deletions

View file

@ -84,7 +84,7 @@ namespace PlexRequests.Store
{
using (var con = DbConnection())
{
return con.Query<MetadataItems>(query, param);
return (IEnumerable<MetadataItems>)con.Query(query, param);
}
}
}