codetuner
codetuner
Issue of getting error "Parameter is not valid." when connecting using VNC without password authentication still present in mRemoteNG 1.75.7012.16814. Just so you know.
Hi! Thanks for your interest! Unfortunately, I don't have the resources to provide and maintain several Framework-bound versions of my libraries as I barely have time to publish and keep...
@ajcvickers You say it is a consequence of lazy-loading for detached entities. Would the suggestion a made in issue [33041](https://github.com/dotnet/efcore/issues/33041) be a solution for this too ? My suggestion is...
@RupenAnjaria By the DbSet.Add method I mean the following method: https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.dbset-1.add?view=efcore-8.0 It's base implementation on line 173 of https://github.com/RupenAnjaria/efcore/blob/main/src/EFCore/DbSet.cs is not implemented, so it is apparantly implement separately per provider....
@ajcvickers Thank you for these insights. In what I described the "second solution" the system would have to keep track of status (new or existing) of associated entities. Which either...
@ajcvickers Correct. And the docs state that the "second solution" is the right one. My mistake. This is what the doc of [DbSet.Add](https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.dbset-1.add?view=efcore-8.0) says: "_Begins tracking the given entity, **and...
@RupenAnjaria For me yes: that's what the documentation of DbSet.Add says...
Well, that's where you need to do some investigation... I added the following code to see the exact type and hierarchy of DbSet: ``` var bc = Context.OrderLines.GetType(); while(bc !=...
@ajcvickers Thanks. Correct. But there's no difference between AddOrderLine3 and AddOrderLine2, apart from listing the tracked entities on the console. The errormessage of both (as they are the same) says:...
The following example code demonstrates the same issue without using proxies, proving the issue is not specific to proxies. This code uses SQLServer as backend. And every operation is in...