EntityFramework.Testing icon indicating copy to clipboard operation
EntityFramework.Testing copied to clipboard

EntityFramework Testing

Results 9 EntityFramework.Testing issues
Sort by recently updated
recently updated
newest added

Include is not working when used as an Expression. Here the example code to reproduce the problem: `public T Get(Expression predicate, params Expression[] includes) { IQueryable query = _set; query...

Hi guys, quick question how hard to add DbQuery support?

As we know unit testing EF queries actually tests those queries by executing it as Linq to objects that poses some problems with what you must write in your query...

Do you have any plans on developing a version of your awesome library for EF7? We used your EntityFrameworkTesting.NSubstitute a lot in our application and in the process of starting...

I get a warning when building my .NET Core application that includes this NUget package for my unit test project: "Warning NU1701 Package 'EntityFrameworkTesting.Moq 1.2.1' was restored using '.NETFramework,Version=v4.6.1' instead...

Hi guys! I tried to make a mock for my simple DbContext and It works fine For MockBehavior.Default, But when I try to use MockBehavior.Strict I cannot even get an...

Could you please add to readme some explanation/links, why we should consider to use Ninject.MockingKernel.NSubstitute instead of just mocking framework. Could you also remove dots in packages names. The actual...

I wanted to use the DbSet.Remove method in some repository tests, but found that the mock DbSet.Remove method was only doing reference comparison. So passing in an object with identical...

enhancement