lampersky
lampersky
> I'm not the original author, but my interpretation is those extension methods are intentionally not called in base Orchard Core code. They are provided as a way for consumers...
I have to admit something to you guys, I've never ventured into that part of the documentation :-P I mistakenly assumed that it should work like for other configurable modules:...
@hishamco I already answered in the main issue, but here is the copy, so you don't need to jump back and forth: > I have to admit something to you...
I did not analyze why the environment variables are being saved, I assumed it was intentional, instead I focused on analyzing why the wrong value is being saved. Converting to...
Maybe somebody find it useful, I've created simple app using Workflows module which is able to perform **basic** import. https://github.com/OrchardCMS/OrchardCore/discussions/11516#discussioncomment-2703296
@jorgeleo I implemented simple and configurable comment parser: ``` WhiteSpaceWithCommentsParser = Literals.ExtendedWhiteSpace( s => s.SkipWhiteSpaceOrNewLine(), s => s.SkipSingleLineComment("--"), s => s.SkipMultiLineComment("/*", "*/", true) ).Then(static x => x.ToString()); WhiteSpaceWithCommentsParserNoNesting = Literals.ExtendedWhiteSpace(...
@sebastienros **WithWhiteSpaceParser** works great! If you have time, please have a look if approach with comment parsing logic inside the [scanner](https://github.com/lampersky/UsefulParlotParsers/blob/main/src/Lampersky.UsefulParlotParsers/Extensions/CommentsScannerExtensions.cs) (and [parser](https://github.com/lampersky/UsefulParlotParsers/blob/main/src/Lampersky.UsefulParlotParsers/Parsers/ExtendedWhiteSpaceParser.cs)) is ok, or if you are thinking...
this is a screenshot from MS SQL Server Management Studio: as you can see, you can nest a multiline comment inside another one, in c# and JS it won't work
@sebastienros yes
I wasn't able to repro on sqlite. But will try tomorrow. The reported problem is on SQL Server. Query looks sth like this, it is not the original one. So,...