Dominic Germain

Results 3 issues of Dominic Germain

# Description Since there is the variable `LOGROTATE_INTERVAL`, it would be useful to be able to adjust the number of files kept by logrotate, so I added `LOGROTATE_COUNT`. ## Type...

kind/new feature

PR for issue #128.

### Steps to reproduce ```cs queryable.Where(e => e.StringProperty.Contains("\\")) ``` ### The issue The escaping is wrong when using `String.Contains("\\")`. It gets translated to `e.StringProperty LIKE '%\\%'` (escaped only once, but...