I was playing with my "Debug -> Options -> Debugging -> General -> Enable Just my code" checkbox
When I check it everythng works fine but when I uncheck it I get the following:
A first chance exception of type 'System.EntryPointNotFoundException' occurred in mscorlib.dll
Additional information: Unable to find an entry point named 'EventSetInformation' in DLL 'advapi32.dll'.
Method:
public IEnumerable<TEntity> GetAll()
{
return Context.Set<TEntity>().ToList();
}
I have no idea what it means, and anything I search on internet is based on some C++ projects - any ideas?