mindcrash

Results 3 comments of mindcrash

@janl What about harassment regarding _religious preference of a person_ instead of harassment being seen as _taking offense due to ideological differences_; a clear line between a ad hominem, personal...

You can achieve this already, by combining ```csharp query.Where(...) ``` With ``` query.Limit(...) ``` Like this: ```csharp var query = new Query("data") .Where("x", ">", 10) .Limit(10) .Select("y") ``` or, in...

I know, but we have several objects with several types derived from Setting in that list. :) For now I solved this with a custom formatter, but life would become...