Sonarr/NzbDrone.Core/Instrumentation/LogRepository.cs

26 lines
586 B
C#
Raw Normal View History

2013-02-23 19:38:25 +00:00
using System;
2013-03-24 04:16:00 +00:00
using System.Data;
2013-02-23 19:38:25 +00: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-25 03:51:32 +00:00
public LogRepository(IDatabase database)
2013-03-24 04:16:00 +00:00
: base(database)
2013-02-23 19:38:25 +00:00
{
}
public void Trim()
{
2013-03-27 03:44:52 +00:00
var oldIds = Query.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id);
2013-02-23 19:38:25 +00:00
DeleteMany(oldIds);
}
}
}