John Youngers
John Youngers
@andrerav - Here's the expression that gets generated along with the resulting applicable mongodb query: ``` .Select(Param_0 => new ItemFacade() { Id = Param_0.Id.ToString(), Children = Param_0.Children.Select(Param_1 => new ChildFacade()...
the mongodb driver was updated to handle these parameters
I work on a project that's similar in nature: we don't expose the EFCore classes directly, and instead the APIs expose their own models which have mapping expressions to the...
If nothing else, this type of solution may be promising: Extending off of my prior note (creating an expression `T => new T()` that excludes navigation properties), I think a...
@julealgon - it's definitely an issue once OData is applied: the double join occurs because the child table is referenced in the base level `Instance = $it` as well as...
Did this solution end up making it into the library? I'm trying to create a program to analyze our applications looking for certain method calls, and reporting on the types...
This wouldn't necessarily be for source generation, but I believe it would be dealing with the same roslyn types used in the source generators. Being able to analyze the semanticmodel...
> > If you specify credentials in environment variables, the SDK always uses those credentials, no matter which profile you specify. > > When you are using IRSA, k8s automatically...
If I have the following step in a dockerfile: `RUN sudo dotnet tool install dotnet-sonarscanner --tool-path /usr/local/bin` With the container running, it results in the following on `dotnet sonarscanner end`:...
@chriseaton / @Geims83 - was something needed on publish to actually use these values? Using `MSBuild.Sdk.SqlProj/2.6.0` I can see the default values are being populated in the dacpac, but when...