Spring Projects Issues
Spring Projects Issues
**[Vijay](https://jira.spring.io/secure/ViewProfile.jspa?name=s)** commented I don't have a separate sample just for this - but can create one if you feel this shouldn't be happening. I was wondering if aliases are supported...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented They are. However, without you specifying what `dateDue` is supposed to refer to, how are we supposed to know whether it's supposed to be bound to `c`,...
**[Vijay](https://jira.spring.io/secure/ViewProfile.jspa?name=s)** commented Hello again, I am creating an alias field, **newDateDue** (_I have renamed the alias field name since it was probably confusing to have the same alias name as...
**[Vijay](https://jira.spring.io/secure/ViewProfile.jspa?name=s)** commented Hello, could you please guide on this. Thanks
**[Vijay](https://jira.spring.io/secure/ViewProfile.jspa?name=s)** commented I resolved this through Criteria Queries - which are powerful, although tough to learn. Criteria Query cut through this (seemingly difficult query using spring data) like a knife...
**[KnyGoo](https://jira.spring.io/secure/ViewProfile.jspa?name=knygoo)** commented [Vijay](https://jira.spring.io/secure/ViewProfile.jspa?name=s) Can you provide an example please? I have the same issue...
**[Alexander](https://jira.spring.io/secure/ViewProfile.jspa?name=baranchikov)** commented Hi all! The issue is still valid for at least Spring Data Jpa 2.1.x, 2.2.x I've created a simple project to reproduce the problem - https://github.com/baranchikovaleks/data-jpa-sort
**[Eric Sirianni](https://jira.spring.io/secure/ViewProfile.jspa?name=sirianni)** commented Strangely, I am not hitting this assertion: ```java private static final String MESSAGE = "Already found parameter binding with same index / parameter name but differing binding...
**[Jens Schauder](https://jira.spring.io/secure/ViewProfile.jspa?name=schauder)** commented The problem is that the query returns a `Timestamp` which can't get converted to the requested `LocalDate` by the `DefaultConversionService`. So as a quick workaround returning a...
**[Dev Naruka](https://jira.spring.io/secure/ViewProfile.jspa?name=devnaruka)** commented I saw that there is some activity towards implementing soft delete using the query augmentation. Generally a delete has the following impacts: - Delete the entity (DELETE...