Diego Vega
Diego Vega
Today I found something that I believe aggravates the issue: I have in my test code some assertion helper methods that do "soft" property matching like this: ```csharp opt =...
> Instead, we can fail the assertion when you try to use Including and Excluding on a type that is being treated as having value semantics. I actually agree that...
Renaming since scalar functions mapping support has been added in 2.0 preview 2. Some of the remaining scenarios listed in this issue could be easier to tackle based on the...
@pmiddleton curious if you are still looking at TVFs and other things you were planning to look into. If there is anything we can help with let us know.
I just wanted to share here some lexperiments I did some time ago with different alternative approaches to Enumerable.Contains using existing EF Core APIs: https://github.com/divega/ContainsOptimization/ The goal was both to...
My understanding (@WalterW correct me if I am wrong), is that you would like to see EF Core's DbContext scaffolding becoming capable of generating methods for each stored procedure in...
@Jeffiy can you please create a new issue and provide a repro? If this is a regression in 1.1 we may want to fix it in 1.1.1.
@mgolois This issue is about `String.Equals(String, StringComparison)`. could you please elaborate about what exactly the query looks like that you are trying to port to EF Core?
@mgolois to be more precise: 1. EF6 completely ignores the StringComparison argument. Is this the behavior that you expect from EF Core? If yes, why? 2. Also, are you aware...
@xperiandri and it produces a warning like this in the log: ``` warn: Microsoft.EntityFrameworkCore.Query[20500] => Microsoft.EntityFrameworkCore.Query.RelationalQueryModelVisitor The LINQ expression 'where [p].Name.Equals(__name_0, CurrentCulture)' could not be translated and will be evaluated...