Bart Koelman

Results 276 comments of Bart Koelman

Yes, this is possible without changes to JsonApiDotNetCore itself. And it's actually a lot easier than suggested in the [StackOverflow question](https://stackoverflow.com/questions/78758507/jsonapidotnetcore-and-filtering-using-a-udf). I have a working sample available, where the decrypt...

It's unclear to me what you're proposing. Where would this method exist? `IResourceDefinition.GetMeta` executes as part of rendering the response, I don't like the idea of executing additional queries from...

No, there isn't, that's why I suggested to fetch the data upfront and store in it resource properties, so it's available for you to produce meta.

As I said, it depends on what you need. - If the information to produce meta exists in the same database table, it's most efficient to include these properties on...

I think I've seen a matching Resharper/Rider setting for named lambda parameters, would be nice to use matching terminology so it can be automated. I just got back from vacation,...

The Resharper settings for controlling this are documented [here](https://www.jetbrains.com/help/resharper/2024.1/Argument_Style.html#preferences). For lambda's, here's how to set it up: ![image](https://github.com/dennisdoomen/CSharpGuidelines/assets/10324372/c007686f-0cd2-420f-8c09-2eeed40898e6) Which results in the following addition to the `.DotSettings` file: ```xml Named...

Surely the guidelines are not hard rules, if that's what you mean. It's usually fine to deviate when there's good motivation. I just don't get your motivation on _why_ using...

Haven't tried, but maybe this helps: https://blog.jetbrains.com/dotnet/2024/11/13/resharper-2024-3-release/#code-styles-and-cleanup-enhancements

That's fast! PS: Best of luck with your talk at netconf.

There are bugs all over the place, resulting from the currently weird on/off switching of nullability context all the time. For example, the indexer parameter on endpoints is declared as...