Results 16 comments of David

Just want to share, if your module is lazy loaded, you can hook between the loading and actual delivery to do any async initialization like this: ``` loadChildren: () =>...

I can confirm this broke exactly in release: 6.13.0

When this was working the outputed SQL was quite acceptable: `exec sp_executesql N'MERGE INTO [dbo].[CORE_LOCALES_SOURCE] AS DestinationTable USING ( SELECT [Extent1].[id] AS [id] FROM [dbo].[CORE_LOCALES_SOURCE] AS [Extent1] WHERE [Extent1].[source] LIKE...

This does not work: `EntityFrameworkManager.BulkOperationBuilder = builder => { builder.UseLegacyBatchOperation = true; };` But if you set the legacy behaviour directly on the operation it does work: ` db.CORE_LOCALES_SOURCE .Where(i...

I think I did a more in detail explanation of what the issue really is in: https://github.com/StefH/System.Linq.Dynamic.Core/issues/289 As @wertzui there seems to be some ad-hoc handling for some methods such...

And this looks like the proof in the documentation that custom handling was added for some specific cases, but there is no proper generic support for lambdas as method arguments:...

@StefH I mode some good progress in a POC to remove ad-hoc logic for aggregates in favor of generic handling of lambdas. #295 Tests are not 100% passing, but before...

> Would it be an option to make this configurable? Yes I was thinking on working in a global cleanup, then adding a backwards compatiblity layer that is configurable by...

Automation to automatically add the certificates to the account configured in IIS: ``` private void AddLetsEncryptAuthoritiesToAccount( string userName, string password, string domain) { Advapi32Extern.LogonUser(userName, domain, password, 2, 0, out var...

@jermicus thanks for the script, it made things much easier.