Interface IAuditEntryRepository
Represents a repository for IAuditEntry entities.
Namespace: Umbraco.Cms.Core.Persistence.Repositories
Assembly: Umbraco.Core.dll
Syntax
public interface IAuditEntryRepository : IReadWriteQueryRepository<int, IAuditEntry>, IReadRepository<int, IAuditEntry>, IWriteRepository<IAuditEntry>, IQueryRepository<IAuditEntry>, IRepository
Methods
View SourceGetPage(Int64, Int32, out Int64)
Gets a page of entries.
Declaration
IEnumerable<IAuditEntry> GetPage(long pageIndex, int pageCount, out long records)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | pageIndex | |
System.Int32 | pageCount | |
System.Int64 | records |
Returns
Type | Description |
---|---|
IEnumerable<IAuditEntry> |
IsAvailable()
Determines whether the repository is available.
Declaration
bool IsAvailable()
Returns
Type | Description |
---|---|
System.Boolean |
Remarks
During an upgrade, the repository may not be available, until the table has been created.