diff --git a/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs b/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs index c8355e9..4223d82 100644 --- a/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs +++ b/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs @@ -21,16 +21,6 @@ /// The entity found, or null if no entity is found. Task ReadByIdAsync(TId id); - /// - /// Retrieves all entities of type from the repository. - /// - /// - /// This method returns an that represents all entities in the repository. - /// The result is an IQueryable that allows for further querying and filtering to be applied by the caller. - /// - /// An containing all entities of type in the repository. - protected IQueryable ReadAll(); - /// /// Retrieves all entities from the repository. ///