-
```
If our search criteria has Unicode characters we can not get good result
because @WhereClause and OrderBy are not Nvarchar
@WhereClause varchar (2000) ,
@OrderBy varchar (2000) ,
```
Or…
-
My entity used @Convert at Entity
like this :
```
@Convert(converter = StringListConverter.class)
private List economyItem11;
```
My converter is :
```
@Override
public String…
-
in the interests of allowing select().join() to be a thing for Core and ORM at the same time, removing the major complexity of aliased=True should help. In #4704 we see that nobody has noticed aliase…
-
I have a SQL
`
SELECT min(id) AS min_id, max(id) AS max_id
from (
select id
FROM msg
WHERE id > #{minId}
AND date = #{date}
…
-
```
This would primarily safeguard against SQL Injection.
I have thought about converting it to use the parameterized approach but I am
not that familiar with the internals of netTiers.
Still my gu…
-
The following CGU are re-compiled even though there's been no change to the source code (just `touch components/style/lib.rs`).
```
alloc-vec.volatile
style-properties-animated_properties
style-…
-
It seems like something broke with the latest data set release. A lot of queries in the [Fugu report](https://httparchive.org/reports/project-fugu) don't seem to return any data (for example [`idleDet…
-
Hi,
I'm trying to add a where clause to an event subscription but I cannot figure out how to set the filter operands. I was expecting to do something like this:
new ContentFilter {
…
-
Hey guyz.
I've finally reach a point, where I've almost done all the features I wanted to develop for this framework.
I still have some more things to add, like:
- An **advanced filter manageme…
-
**Describe the bug**
```
string(58) "preg_match() expects parameter 2 to be string, array given"
string(1935) "#0 [internal function]: flight\Engine->handleError(2, 'preg_match() ex...', '/www/wwwr…