Kevin Krumwiede

Results 42 comments of Kevin Krumwiede

That helps narrow it down. I found a [blog post about 8.0 preview](https://devblogs.microsoft.com/odata/routing-in-asp-net-core-8-0-preview/) where it's mentioned that `EntitySetRoutingConvention` creates the $count path. It seems like a bug or misfeature that...

As a workaround, the conventional routes can be removed and selectively re-added like this: ```C# builder.Services .AddControllers() .AddOData(options => { options.Conventions.Clear(); options.Conventions.Add(new MetadataRoutingConvention()); options.AddRouteComponents("odata", EdmBuilder.Build()); }); ``` I'll dig into...

It looks like routing conventions are an area that still needs a lot of work in 8.x. The aforementioned blog post says, >We want to make developer to customize his...

@ElizabethOkerio The issue is that the functionality of `$count` segment seems to depend on the availability of the `Count()` query option. If the `Count()` query is disabled, the `$count` segment...

This is still much needed.

My two cents as an Android developer: The gigantic size of the ArgGIS Runtime SDK for Android is a compelling reason to avoid using it. The use of native libraries...

To summarize, does this mean an unbound action always requires an explicit route on the controller method? This is the only way I could get an unbound action to work...

I've been poking around in the lib for my own purposes and may have a solution for this. The `Name` property is `virtual`, so perhaps you could extend one of...

Adding a parameter with a default preserves source compatibility. But if you care about binary compatibility, I think I need to change it to an overloaded constructor with the new...

I realized I can do the same thing without modifying the library if I configure the trigger and wrap it in this: ```C# public class TriggerHacks : ITrigger where T...