python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
MissingMethodException when migrating from Ef 6.2 to 6.4.4
For a .net framework 4.8 project, when I update the EF reference from 6.2 to 6.4.4 the application throw an error
System.MissingMethodException: Unable find 'Void System.Data.Entity.Infrastructure.Lo...

Longa
Votes: 0
Answers: 1
Mocking EF in Xunit
I am new to unit testing and mocking but I am trying to add tests for existing CRUD functions. I know that I need to use MOQ library but I am not sure if I can do it with the function below. All CRUD ...
ilito
Votes: 0
Answers: 3
Connecting multiple tables using Entity Framework (code first)
I've created 2 table for my database, and connect them using foreign key,
example:
internal class Student
{
[Key]
public int StudentId { get; set; }
[Column(TypeName = "nvarchar(50)&q...

Ruby Rain
Votes: 0
Answers: 1
Entity Framework 6 Include retrieve data in null - relation one to one
Department and store model. They are a one to one relationship. when I do the (Include) only some models it brings me the complete data.
The data is correctly in the database
var orders = await _cont...
Yamgel Cruz
Votes: 0
Answers: 1