EN VI
Posts (0)
Questions (5)
2024-03-12 20:00:13
First of all turn your fields into properties: public class User { public int Id { get; set; } // ... } public class Team { public int Id { get; set; } // ... } public class Member {...
2024-03-13 11:30:05
I'm not sure about the debugger value you are checking, but dbContext.ChangeTracker.QueryTrackingBehavior should reveal the current tracking state. You can also check dbContext.ChangeTracker.Entries(...
2024-03-13 12:30:05
I'm not sure about the debugger value you are checking, but dbContext.ChangeTracker.QueryTrackingBehavior should reveal the current tracking state. You can also check dbContext.ChangeTracker.Entries(...
2024-03-14 00:30:07
You can use IQueryExpressionInterceptor. Create something simple and put breakpoint into interceptor code: public class QueryExpressionFakeInterceptor : IQueryExpressionInterceptor { public static...
2024-03-14 21:00:12
I'm going to bang the drum again: This idea is a bad idea. Giving the impression to an application/user that things "worked" when they didn't is not a good idea. In this case you say it's "not a probl...

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login