1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

26 lines
586 B
C#
Raw Normal View History

2013-02-23 11:38:25 -08:00
using System;
2013-03-23 21:16:00 -07:00
using System.Data;
2013-02-23 11:38:25 -08:00
using System.Linq;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Instrumentation
{
public interface ILogRepository : IBasicRepository<Log>
{
void Trim();
}
public class LogRepository : BasicRepository<Log>, ILogRepository
{
2013-03-24 20:51:32 -07:00
public LogRepository(IDatabase database)
2013-03-23 21:16:00 -07:00
: base(database)
2013-02-23 11:38:25 -08:00
{
}
public void Trim()
{
2013-03-26 20:44:52 -07:00
var oldIds = Query.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id);
2013-02-23 11:38:25 -08:00
DeleteMany(oldIds);
}
}
}