Jonathan Magnan
Jonathan Magnan
Indeed, I was wrong, It makes sense that it works with the [Query Cache](https://entityframework-plus.net/ef-core-query-cache) features in EF Core. I'm surprised that you were able to make it work for [Query...
Hello @Sharma-Arcadix , Unfortunately, this feature currently only supports SQL Server. We might eventually add PostgreSQL and other providers, but there is currently no short-term plan for doing it. It...
Hello @JaimeCastellanosM , See the following online example I created from your example: https://dotnetfiddle.net/oT5OlX ```csharp var joined = from o in context.Orders join c in context.Customers on o.SecondaryID equals c.SecondaryID...
Hello @JaimeCastellanosM , Indeed, it doesn't work if the column name is different. I tried to find a solution but didn't find one either. One way to fix it since...
Hello @LeinerViloria , Unfortunately, adding `MergeFromQuery` is not possible in the short term, as we currently have too many tasks to complete first. However, I'm opening a reminder on our...
Hello @LeinerViloria , Indeed, you are currently overpassing the limit of our library. The way you are currently using it was not initially expected. We perform an `EXISTS` statement to...
Hello @mhsimkin , The error `ERROR_34` is not related to SQL Express reaching a limit. This error is currently thrown by our library to handle a special case where, for...
> Is this a duplicate key issue? No, from what my developer told me is the same entity is found twice in the same list. Such as: ``` var invoiceItem...
Thank you for the project. My developer will look into it. Best Regards, Jon
Hello @mhsimkin , Thank you again for the project. The issue happens due to how is calculated an HashCode with a record. In your case, for this one `public record...