For a few days now, I have been struggling with retrieving my entities from a repository (DbContext). I am trying …
c# entity-framework dbcontext dbsetI'm not sure that this is possible, but I'm trying to unit test a repository that uses a DbSet. I …
c# unit-testing iqueryable dbsetI have the following 2 methods in my Logs repository. public IEnumerable<Log> GetAll() { var db = new CasLogEntities(); return …
entity-framework dbsetVersion Info: I am using C# 4.5, Entity Framework 6.0, and MEF. Code and Unit Test I created a Test Project to …
c# entity-framework casting mef dbsetI have a class like this: [Table("member_activation")] public partial class MemberActivation { [Key] public Int64 member_id { get; set; } …
c# asp.net dbset