InspiringCode
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`...
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,...
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...
Returning `SqlFragmentExpression` from `HasTranslation` doesn't work (switches to client evaluation)
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) {...
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...
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...