Kevin Hahn
Kevin Hahn
I'm using the Bobs mod inserters mod to let me change the inserter pickup and drop-off locations, and when I use the flip tool it's not preserving the hand locations.
Right now the moment you inject `GoogleApiService` it'll load the gApi, I'd much rather have the option to wait until I want to use the api to determine if I...
I use route resolvers to load data when a route is navigated too, and when I click a link to take me to a route everything works just fine, the...
I just ran into an issue when using the assembly scanner where `scan.TheCallingAssembly()` worked differently depending on how the registry was used. Unfortunately it's hard to provide a simple reproduction...
We've got some json files that we treat as json5, but they're still just `en.json` and the extension doesn't like that. It'll read the files just fine, but when I...
All the docs I found about fluent mapping look like [this](https://linq2db.github.io/index.html#fluent-configuration): ```C# var myFluentMappings = new MappingSchema(); var builder = mappingSchema.GetFluentMappingBuilder(); builder.Entity() .HasTableName("Products") .HasSchemaName("dbo") .HasIdentity(x => x.ProductID) .HasPrimaryKey(x => x.ProductID)...
when I add: `# syntax=docker/dockerfile:1` at the start of my dockerfile one of the first things the build does is tries ``` => resolve image config for docker.io/docker/dockerfile: 68.7s ```...
This adds support for properties to have a getter (and setter), closes #77. Like this: ```C# public int Prop { get => Field; } ``` I was able to run...
I'm getting the following error when trying to query a CTE selecting in the depth ``` Stack trace: LinqToDB.Linq.LinqException : Expression 'parent.OrgGroup.Id' (parent.OrgGroup) is not a table. at LinqToDB.Linq.Builder.TableBuilder.TableContext.FindTable(Expression expression,...
This change makes it so that only an agent that's detected as having powershell will be used to execute the task. We recently setup a mac build agent and added...