mindcrash
mindcrash
While working around some issues within the Postgres compiler (like not supporting some operations required to query arrays and JSON) I discovered some issues which can be worked around right...
When the right hand side of Union(), Intersect() or Except() contains Common Table Expressions these are not written because CteFinder currently has no support for traversing AbstractCombine nodes. As I...
Given the following type structure: ```csharp public abstract class Setting { public string Name { get; set; } public abstract string Kind { get; } } public class TextSetting :...