Obed Kooijman
Obed Kooijman
Could you provide a minimal repro? Also, if you want to know if it is a more general issue, you could just change the provider and see if the same...
Minimal Console repro: ```csharp using Microsoft.EntityFrameworkCore; await using TestContext context = new(); await context.Database.EnsureDeletedAsync(); await context.Database.EnsureCreatedAsync(); await context.MapInfo .Where(x => x.Tags != null && x.Tags.All(tag => x.Tags.Contains(tag))) .ToArrayAsync(); public class...
Just another simple console repro: ```csharp using System.Data.Common; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Diagnostics; await using TestContext context = new(); await context.Database.EnsureDeletedAsync(); await context.Database.EnsureCreatedAsync(); public class TestContext : DbContext { protected override...
@roji yeah, that's what I thought too. But in that case either there has to be a way to apply the same changes after the interceptor has assigned a new...
> I think we should assume that Parse and `TryParse` are implemented similarly This is a logical expectation considering how the [dotnet/runtime](/dotnet/runtime) has implemented the interface themselves. E.g. [the `DateOnly`](https://github.com/dotnet/runtime/blob/19467dccf4e6786296eecd8007f90e6dafe01818/src/libraries/System.Private.CoreLib/src/System/DateOnly.cs#L289)...
So if I understand you correctly, then your concern is about whether or not `Parse` and `TryParse` have a completely different implementation, separate from each other.
@jnyrup's explanation fits my intend with the proposal. This is not to test whether my parser is correctly implemented, but rather if my string is a parsable value. With this...
Yes, i already knew about that approach. But it's actually a completely different setup, since you're using linux under the hood. The goal here is to have a bare minimum...
yeah, that not what my issue is about though. While configuring rustup on my windows machine I can just say I want to use windows-gnu and a lot of stuff...
First of all, I have to apologize. I forgot I had installed Mingw in the meantime for some other stuff. I just removed it to come back to the state...