InspiringCode

Results 21 issues of InspiringCode

First of all, this is really an **AWESOME** project! I have the problem, that I have to sort an array by two members, first bei `DateAdded` and then by `Name`...

enhancement
pr welcome

Whenever I try to call `Add-Type -Path "D:\Test\Namotion.Reflection.dll"` in a PowerShell session it fails with `Could not load file or assembly 'Namotion.Reflection, Version=1.0.12.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102'`. The loading of a big...

I have a scenario, where I just need to populate the container with the services from IServiceColletion but do not want to register AutofacServiceProvider and AutofacServiceScopeFactory. Would it be possible,...

enhancement
pending-input

A `Select` projection with an (uncorrelated) subquery seems to produce two separate SQL queries, which is not what I expect as a developer. For example: ```csharp IQueryable allEmployees = context...

type-enhancement
area-perf
closed-fixed
customer-reported
area-query

I have the following function mapping with `HasTranslation`: ```csharp public static partial class EntityFrameworkExtensions { public static int TotalRowCount() => throw new NotSupportedException(); public static void HasTotalRowCountFunction(this ModelBuilder mb) {...

type-enhancement
closed-fixed
customer-reported
area-query

Is there any chance that you can support the most common EF functions like `EF.Functions.Like`? An relatively simple approach might be to write an ExpressionVisitor that replace those function calls...

When generating a schema for the `RootClass`: ```csharp public class RootClass { public Subclass_1_1 Content { get; set; } } public class BaseClass { public string BaseProperty { get; set;...

Wouldn’t it make sense to make non-nullable properties required? When I have a C# propertiy that is non-null and deserialize it without a JSON property for it, I would construct...

type: question

I have several inheritance hierarchies where I have a common base class that should not be included in the JSON inheritance hierarchy. ```csharp public class Entity { public Guid Id...

Is there any way to customize how step names and scenario names are displayed? I would really find it useful to just see the sequence and name of the step...

question