# Consultas y borrados con nombres de metodos Sin paginacion
1 find - delete
2. Cuantos [First], [First%n%], [Distinct]
3. By -> Por que atributo se quiere buscar %Atr% -> name
Is, Equals, Between, LessThan, LessThanEqual, GreaterThan etc
Se utiliza si se quiere "And", "Or" ->nameAndEdad
IgnoreCase -> Ignorando mayusculas
4. OrederBy
%Antr1%Desc, %Antr%Asc
Ejemplos:
```
Entity findByAtr1(String atr1)
List<Entity> findFirst3ByAtr1StartingWhith(String prefix)
List<Entity> findByAtr1OrAtr2OrderByAtr3Desc(String atr1, String atr2);
List<Entity> findByAtr1GreaterThan(int value);
int deleteByAtr1(String atr1);
int deleteByAtr1GreaterThan(int value);
```
# paginacion
```
List<UnRelatedEntity> findByGreaterThan(int id, Pageable pageable)
// esto es en la llamada del metodo
dao.findByIdGreatThan(90, new PageRequest(1,5))
//tambien se puede contar
dao.count()
```