using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Library.DbContextLib; using Library.Entities; using Microsoft.EntityFrameworkCore; namespace TestStub { public class StubbedContext : DbContext { public List Books { get; set; } public StubbedContext() { Books.Add(new BookEntity("test", "test", "test")); Books.Add(new BookEntity("test2", "test2", "test2")); } } }