Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Glimpse.EF6 issue with EF 6.1 (and some beta versions of 6.2) means I can no longer access the database #713

Closed
migill opened this issue Jan 24, 2014 · 61 comments
Assignees
Milestone

Comments

@migill
Copy link

migill commented Jan 24, 2014

[ See also http://stackoverflow.com/questions/21333863 ]

I'm using Visual Studio 2013, ASP.NET MVC 5, and EF 6 (against a SQL Server 2012 database). I'm also using:

Glimpse Core 1.8.1
Glimpse ASP.NET 1.6
Glimpse MVC5 1.5.2
Glimpse ADO 1.7
Glimpse EF6 1.6

Everything is up-to-date at the time of writing.

When I add Glimpse.EF6 to my project, I get a System.NotSupportedException as soon as my code touches the database. If I remove Glimpse.EF6, it works again.

The exception is:

 System.NotSupportedException

 Unable to determine the provider name for provider factory of type 'System.Data.SqlClient.SqlClientFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.

FYI, the connectionStrings part of my web.config looks like this:

<connectionStrings>
  <add name="DefaultConnection" connectionString="Data Source=.; Initial Catalog=foo; Integrated Security=True; MultipleActiveResultSets=True;" providerName="System.Data.SqlClient" />
</connectionStrings>

...and my Application_Start method looks like this:

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    GlobalConfiguration.Configure(WebApiConfig.Register);
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);

    Database.SetInitializer(new WebApplication.Models.Storage.ApplicationDbInitializer());
}

...and my context class looks like this:

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
    public ApplicationDbContext()
        : base("DefaultConnection")
    {
    }

    public DbSet<Foo> Foos { get; set; }
}

Thanks in advance for any help...

Stack trace:

[NotSupportedException: Unable to determine the provider name for provider factory of type 'System.Data.SqlClient.SqlClientFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.]
System.Data.Entity.Utilities.DbProviderFactoryExtensions.GetProviderInvariantName(DbProviderFactory factory) +290
System.Data.Entity.Infrastructure.DependencyResolution.DefaultInvariantNameResolver.GetService(Type type, Object key) +248
System.Data.Entity.Infrastructure.DependencyResolution.<>c__DisplayClass1.<GetService>b__0(Tuple`2 k) +75
System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) +72
System.Data.Entity.Infrastructure.DependencyResolution.CachingDependencyResolver.GetService(Type type, Object key) +210
System.Data.Entity.Infrastructure.DependencyResolution.<>c__DisplayClass3.<GetService>b__0(IDbDependencyResolver r) +60
System.Linq.WhereSelectArrayIterator`2.MoveNext() +66
System.Linq.Enumerable.FirstOrDefault(IEnumerable`1 source, Func`2 predicate) +161
System.Data.Entity.Infrastructure.DependencyResolution.ResolverChain.GetService(Type type, Object key) +250
System.Data.Entity.Infrastructure.DependencyResolution.RootDependencyResolver.GetService(Type type, Object key) +106
System.Data.Entity.Infrastructure.DependencyResolution.<>c__DisplayClass3.<GetService>b__0(IDbDependencyResolver r) +60
System.Linq.WhereSelectArrayIterator`2.MoveNext() +66
System.Linq.Enumerable.FirstOrDefault(IEnumerable`1 source, Func`2 predicate) +94
System.Data.Entity.Infrastructure.DependencyResolution.ResolverChain.GetService(Type type, Object key) +250
System.Data.Entity.Infrastructure.DependencyResolution.CompositeResolver`2.GetService(Type type, Object key) +102
System.Data.Entity.Infrastructure.DependencyResolution.DbDependencyResolverExtensions.GetService(IDbDependencyResolver resolver, Object key) +145
System.Data.Entity.Core.Common.<>c__DisplayClass5.<GetExecutionStrategy>b__4(ExecutionStrategyKey k) +84
System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) +72
System.Data.Entity.Core.Common.DbProviderServices.GetExecutionStrategy(DbConnection connection, DbProviderFactory providerFactory) +351
System.Data.Entity.Core.Common.DbProviderServices.GetExecutionStrategy(DbConnection connection) +62
System.Data.Entity.SqlServer.SqlProviderServices.UsingConnection(DbConnection sqlConnection, Action`1 act) +319
System.Data.Entity.SqlServer.SqlProviderServices.UsingMasterConnection(DbConnection sqlConnection, Action`1 act) +335
System.Data.Entity.SqlServer.SqlProviderServices.GetDbProviderManifestToken(DbConnection connection) +399
System.Data.Entity.Core.Common.DbProviderServices.GetProviderManifestToken(DbConnection connection) +132

[ProviderIncompatibleException: The provider did not return a ProviderManifestToken string.]
System.Data.Entity.Core.Common.DbProviderServices.GetProviderManifestToken(DbConnection connection) +327
Glimpse.EF.AlternateType.GlimpseDbProviderServices.GetDbProviderManifestToken(DbConnection connection) +113
System.Data.Entity.Core.Common.DbProviderServices.GetProviderManifestToken(DbConnection connection) +255
System.Data.Entity.Utilities.DbProviderServicesExtensions.GetProviderManifestTokenChecked(DbProviderServices providerServices, DbConnection connection) +67

[ProviderIncompatibleException: An error occurred accessing the database. This usually means that the connection to the database failed. Check that the connection string is correct and that the appropriate DbContext constructor is being used to specify it or find it in the application's config file. See http://go.microsoft.com/fwlink/?LinkId=386386 for information on DbContext and connections. See the inner exception for details of the failure.]
System.Data.Entity.Utilities.DbProviderServicesExtensions.GetProviderManifestTokenChecked(DbProviderServices providerServices, DbConnection connection) +277
System.Data.Entity.Infrastructure.<>c__DisplayClass1.<ResolveManifestToken>b__0(Tuple`3 k) +63
System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) +72
System.Data.Entity.Infrastructure.DefaultManifestTokenResolver.ResolveManifestToken(DbConnection connection) +360
System.Data.Entity.Utilities.DbConnectionExtensions.GetProviderInfo(DbConnection connection, DbProviderManifest& providerManifest) +89
System.Data.Entity.DbModelBuilder.Build(DbConnection providerConnection) +79
System.Data.Entity.Internal.LazyInternalContext.CreateModel(LazyInternalContext internalContext) +143
System.Data.Entity.Internal.RetryLazy`2.GetValue(TInput input) +171
System.Data.Entity.Internal.LazyInternalContext.InitializeContext() +594
System.Data.Entity.Internal.InternalContext.Initialize() +31
System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType) +39
System.Data.Entity.Internal.Linq.InternalSet`1.Initialize() +138
System.Data.Entity.Internal.Linq.InternalSet`1.Include(String path) +41
System.Data.Entity.Infrastructure.DbQuery`1.Include(String path) +142
System.Data.Entity.QueryableExtensions.Include(IQueryable`1 source, String path) +205
System.Data.Entity.QueryableExtensions.Include(IQueryable`1 source, Expression`1 path) +305
Microsoft.AspNet.Identity.EntityFramework.UserStore`6.GetUserAggregateAsync(Expression`1 filter) +610
Microsoft.AspNet.Identity.EntityFramework.UserStore`6.FindByNameAsync(String userName) +1070
Microsoft.AspNet.Identity.<FindByNameAsync>d__10.MoveNext() +283
System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) +93
System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +52
System.Runtime.CompilerServices.ConfiguredTaskAwaiter.GetResult() +24
Microsoft.AspNet.Identity.<FindAsync>d__18.MoveNext() +673
System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) +93
System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +52
System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() +24
WebApplication.Controllers.<Login>d__2.MoveNext() in c:\Users\Gary\Documents\Visual Studio 2013\Projects\eByGum\WebApplication\Controllers\AccountController.cs:49
System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) +93
System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) +52
System.Runtime.CompilerServices.TaskAwaiter.GetResult() +21
System.Threading.Tasks.TaskHelpersExtensions.ThrowIfFaulted(Task task) +61
System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult) +114
System.Web.Mvc.Async.<>c__DisplayClass37.<BeginInvokeAsynchronousActionMethod>b__36(IAsyncResult asyncResult) +66
System.Web.Mvc.Async.WrappedAsyncResult`1.CallEndDelegate(IAsyncResult asyncResult) +47
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +136
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +102
System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod(IAsyncResult asyncResult) +49
Castle.Proxies.AsyncControllerActionInvokerProxy.EndInvokeActionMethod_callback(IAsyncResult asyncResult) +42
Castle.Proxies.Invocations.AsyncControllerActionInvoker_EndInvokeActionMethod.InvokeMethodOnTarget() +103
Castle.DynamicProxy.AbstractInvocation.Proceed() +117
Glimpse.Core.Extensibility.CastleInvocationToAlternateMethodContextAdapter.Proceed() +48
Glimpse.Mvc.AlternateType.EndInvokeActionMethod.NewImplementation(IAlternateMethodContext context) +152
Glimpse.Core.Extensibility.AlternateTypeToCastleInterceptorAdapter.Intercept(IInvocation invocation) +183
Castle.DynamicProxy.AbstractInvocation.Proceed() +483
Castle.Proxies.AsyncControllerActionInvokerProxy.EndInvokeActionMethod(IAsyncResult asyncResult) +203
System.Web.Mvc.Async.AsyncInvocationWithFilters.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() +117
System.Web.Mvc.Async.<>c__DisplayClass48.<InvokeActionMethodFilterAsynchronouslyRecursive>b__41() +323
System.Web.Mvc.Async.<>c__DisplayClass33.<BeginInvokeActionMethodWithFilters>b__32(IAsyncResult asyncResult) +44
System.Web.Mvc.Async.WrappedAsyncResult`1.CallEndDelegate(IAsyncResult asyncResult) +47
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +136
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +102
System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethodWithFilters(IAsyncResult asyncResult) +50
System.Web.Mvc.Async.<>c__DisplayClass2b.<BeginInvokeAction>b__1c() +72
System.Web.Mvc.Async.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult) +184
System.Web.Mvc.Async.WrappedAsyncResult`1.CallEndDelegate(IAsyncResult asyncResult) +42
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +133
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +56
System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) +40
System.Web.Mvc.Controller.<BeginExecuteCore>b__1d(IAsyncResult asyncResult, ExecuteCoreState innerState) +34
System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +70
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +139
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +59
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +40
System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +44
System.Web.Mvc.Controller.<BeginExecute>b__15(IAsyncResult asyncResult, Controller controller) +39
System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +62
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +139
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +59
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +40
System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) +39
System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute(IAsyncResult asyncResult) +39
System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__5(IAsyncResult asyncResult, ProcessRequestState innerState) +39
System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +70
System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +139
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +59
System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag) +40
System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +40
System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +38
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +9514812
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155

Glimpse log:

2014-01-24 15:38:59.2780 | DEBUG | Preloaded all referenced assemblies with System.Web.Compilation.BuildManager.GetReferencedAssemblies() | 
2014-01-24 15:38:59.9721 | DEBUG | Discovering IClientScript's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Client' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Data' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Metadata' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovering IInspector's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.Ado.Inspector.AdoInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.AspNet.Inspector.RoutesInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.Core.Inspector.TraceInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.EF.Inspector.EntityFrameworkInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.DependencyInjectionInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.ExecutionInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.ModelBinderInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.ViewEngineInspector' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovering IResource's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.AjaxResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ClientResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ConfigurationResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ConfigurationScriptResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ConfigurationStyleResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.HistoryResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.LogoResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.LogosResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.MetadataResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.PopupResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.RequestResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.SpriteResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.VersionCheckResource' and added it to collection. | 
2014-01-24 15:39:00.0531 | DEBUG | Discovering ISerializationConverter's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.ConfigurationModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.ConfigurationRoleManagerProviderSettingsModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.EnvironmentModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.ListOfRouteModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.RequestModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.SessionModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.CSharpTypeConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.DateTimeConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.EnumerableOfITimelineMessageConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.GlimpseMetadataConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.GlimpseRequestConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.GlimpseRequestHeadersConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.ListOfTraceMessageConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.MethodInfoConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TabMetadataConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TabResultConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TimelineEventModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TimeSpanConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.CultureConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.ListOfExecutionModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.ListOfMetadataItemModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.ListOfViewsModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.MvcDisplayModelConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.UrlParameterConverter' and added it to collection. | 
2014-01-24 15:39:00.0631 | DEBUG | Discovering ITab's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Ado.Tab.SQL' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Configuration' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Environment' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Request' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Routes' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Session' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Core.Tab.Timeline' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Core.Tab.Trace' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.Execution' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.Metadata' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.ModelBinding' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.Views' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovering IDisplay's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IDisplay of type 'Glimpse.Ado.Display.SqlDisplay' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IDisplay of type 'Glimpse.AspNet.Display.EnvironmentDisplay' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IDisplay of type 'Glimpse.Core.Display.TimingsDisplay' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IDisplay of type 'Glimpse.Mvc.Display.MvcDisplay' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovering IRuntimePolicy's in 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\d49c96e5\b8b645e2' and all sub directories. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.AspNet.Policy.LocalPolicy' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.AjaxPolicy' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.ContentTypePolicy' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.GlimpseResourcePolicy' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.StatusCodePolicy' and added it to collection. | 
2014-01-24 15:39:00.0781 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.UriPolicy' and added it to collection. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Ado.Message.AdoMessage]' has been subscribed to all 'Glimpse.Ado.Message.AdoMessage' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Core.Message.ITimelineMessage]' has been subscribed to all 'Glimpse.Core.Message.ITimelineMessage' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__0' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.Mvc.AlternateType.ActionInvoker+InvokeActionMethod+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__1' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.Mvc.AlternateType.ViewEngine+FindViews+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__2' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.Mvc.AlternateType.View+Render+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__3' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.AspNet.AlternateType.RouteBase+GetRouteData+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Ado.Message.AdoMessage]' has been subscribed to all 'Glimpse.Ado.Message.AdoMessage' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.AspNet.AlternateType.RouteBase+ProcessConstraint+Message]' has been subscribed to all 'Glimpse.AspNet.AlternateType.RouteBase+ProcessConstraint+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.AspNet.AlternateType.RouteBase+GetRouteData+Message]' has been subscribed to all 'Glimpse.AspNet.AlternateType.RouteBase+GetRouteData+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Core.Message.ITimelineMessage]' has been subscribed to all 'Glimpse.Core.Message.ITimelineMessage' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Core.Message.ITraceMessage]' has been subscribed to all 'Glimpse.Core.Message.ITraceMessage' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.Message.IExecutionMessage]' has been subscribed to all 'Glimpse.Mvc.Message.IExecutionMessage' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.AlternateType.View+Render+Message]' has been subscribed to all 'Glimpse.Mvc.AlternateType.View+Render+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__5' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+ContainsPrefix+Message[System.Web.Mvc.IUnvalidatedValueProvider]' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__6' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+ContainsPrefix+Message[System.Web.Mvc.IValueProvider]' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__7' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+GetValue+Message[System.Web.Mvc.IUnvalidatedValueProvider]' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__8' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+GetValue+Message[System.Web.Mvc.IValueProvider]' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__9' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ModelBinder+BindModel+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__a' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ModelBinder+BindProperty+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__b' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+GetValue+Message[System.Web.Mvc.IEnumerableValueProvider]' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<Setup>b__c' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+ContainsPrefix+Message[System.Web.Mvc.IEnumerableValueProvider]' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.AlternateType.ViewEngine+FindViews+Message]' has been subscribed to all 'Glimpse.Mvc.AlternateType.ViewEngine+FindViews+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.AlternateType.View+Render+Message]' has been subscribed to all 'Glimpse.Mvc.AlternateType.View+Render+Message' messages. | 
2014-01-24 15:39:00.0951 | DEBUG | Setup IInspector of type 'Glimpse.Ado.Inspector.AdoInspector'. | 
2014-01-24 15:39:00.1221 | DEBUG | get_Constraints method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | set_Constraints method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | get_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | set_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | get_Defaults method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | set_Defaults method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | get_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | set_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | get_Url method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | set_Url method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | get_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1221 | DEBUG | set_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1301 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Routing.Route'. | 
2014-01-24 15:39:00.1831 | INFO | Replaced Route of type 'System.Web.Routing.Route' with proxy implementation. | 
2014-01-24 15:39:00.1831 | DEBUG | get_Constraints method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | set_Constraints method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | get_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | set_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | get_Defaults method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | set_Defaults method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | get_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | set_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | get_Url method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | set_Url method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | get_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1831 | DEBUG | set_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1881 | DEBUG | _url method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1881 | DEBUG | _parsedRoute method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1881 | DEBUG | HttpMethodParameterName method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1881 | DEBUG | _routeExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. | 
2014-01-24 15:39:00.1881 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Routing.Route'. | 
2014-01-24 15:39:00.2061 | INFO | Replaced Route of type 'System.Web.Http.WebHost.Routing.HttpWebRoute' with proxy implementation. | 
2014-01-24 15:39:00.2061 | INFO | Replaced Route of type 'System.Web.Http.WebHost.Routing.HttpWebRoute' with proxy implementation. | 
2014-01-24 15:39:00.2061 | INFO | Replaced Route of type 'System.Web.Mvc.RouteCollectionExtensions+IgnoreRouteInternal' with proxy implementation. | 
2014-01-24 15:39:00.2061 | INFO | Replaced Route of type 'System.Web.Routing.Route' with proxy implementation. | 
2014-01-24 15:39:00.2061 | DEBUG | Setup IInspector of type 'Glimpse.AspNet.Inspector.RoutesInspector'. | 
2014-01-24 15:39:00.2061 | DEBUG | Setup IInspector of type 'Glimpse.Core.Inspector.TraceInspector'. | 
2014-01-24 15:39:00.2061 | DEBUG | Setup IInspector of type 'Glimpse.EF.Inspector.EntityFrameworkInspector'. | 
2014-01-24 15:39:00.2061 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IDependencyResolver'. | 
2014-01-24 15:39:00.2221 | DEBUG | Replaced IDependencyResolver of type 'System.Web.Mvc.DependencyResolver+DefaultDependencyResolver' with proxy implementation. | 
2014-01-24 15:39:00.2221 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.DependencyInjectionInspector'. | 
2014-01-24 15:39:00.2381 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IControllerFactory'. | 
2014-01-24 15:39:00.2381 | DEBUG | Proxied IControllerFactory of type 'System.Web.Mvc.DefaultControllerFactory'. | 
2014-01-24 15:39:00.2381 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.ExecutionInspector'. | 
2014-01-24 15:39:00.2381 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.ValueProviderFactory'. | 
2014-01-24 15:39:00.2381 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.ChildActionValueProviderFactory' with proxy implementation. | 
2014-01-24 15:39:00.2381 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.FormValueProviderFactory' with proxy implementation. | 
2014-01-24 15:39:00.2381 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.JsonValueProviderFactory' with proxy implementation. | 
2014-01-24 15:39:00.2381 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.RouteDataValueProviderFactory' with proxy implementation. | 
2014-01-24 15:39:00.2381 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.QueryStringValueProviderFactory' with proxy implementation. | 
2014-01-24 15:39:00.2381 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.HttpFileCollectionValueProviderFactory' with proxy implementation. | 
2014-01-24 15:39:00.2501 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. | 
2014-01-24 15:39:00.2501 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.HttpPostedFileBaseModelBinder' with proxy implementation. | 
2014-01-24 15:39:00.2501 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. | 
2014-01-24 15:39:00.2501 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.ByteArrayModelBinder' with proxy implementation. | 
2014-01-24 15:39:00.2501 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. | 
2014-01-24 15:39:00.2501 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.LinqBinaryModelBinder' with proxy implementation. | 
2014-01-24 15:39:00.2501 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. | 
2014-01-24 15:39:00.2501 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.CancellationTokenModelBinder' with proxy implementation. | 
2014-01-24 15:39:00.2501 | DEBUG | get_Binders method of type 'System.Web.Mvc.DefaultModelBinder' is not proxyable. | 
2014-01-24 15:39:00.2501 | DEBUG | set_Binders method of type 'System.Web.Mvc.DefaultModelBinder' is not proxyable. | 
2014-01-24 15:39:00.2501 | DEBUG | GetFilteredModelProperties method of type 'System.Web.Mvc.DefaultModelBinder' is not proxyable. | 
2014-01-24 15:39:00.2501 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.DefaultModelBinder'. | 
2014-01-24 15:39:00.2501 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.DefaultModelBinder' with proxy implementation. | 
2014-01-24 15:39:00.2501 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.ModelBinderInspector'. | 
2014-01-24 15:39:00.2501 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IViewEngine'. | 
2014-01-24 15:39:00.2691 | INFO | Replaced IViewEngine of type 'System.Web.Mvc.WebFormViewEngine' with proxy implementation. | 
2014-01-24 15:39:00.2691 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IViewEngine'. | 
2014-01-24 15:39:00.2691 | INFO | Replaced IViewEngine of type 'System.Web.Mvc.RazorViewEngine' with proxy implementation. | 
2014-01-24 15:39:00.2691 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.ViewEngineInspector'. | 
2014-01-24 15:39:00.4441 | DEBUG | get_Binders method of type 'System.Web.Mvc.Async.AsyncControllerActionInvoker' is not proxyable. | 
2014-01-24 15:39:00.4441 | DEBUG | set_Binders method of type 'System.Web.Mvc.Async.AsyncControllerActionInvoker' is not proxyable. | 
2014-01-24 15:39:00.4441 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.Async.AsyncControllerActionInvoker'. | 
2014-01-24 15:39:00.4711 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IActionFilter'. | 
2014-01-24 15:39:00.4711 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IResultFilter'. | 
2014-01-24 15:39:00.4851 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IAuthorizationFilter'. | 
2014-01-24 15:39:00.4851 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IExceptionFilter'. | 
2014-01-24 15:39:00.4851 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IExceptionFilter'. | 
2014-01-24 15:39:00.5081 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IEnumerableValueProvider'. | 
2014-01-24 15:39:00.5081 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IEnumerableValueProvider'. | 
2014-01-24 15:39:00.5171 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IEnumerableValueProvider'. | 
2014-01-24 15:39:00.5171 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IEnumerableValueProvider'. | 
2014-01-24 15:39:00.5171 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IEnumerableValueProvider'. | 
2014-01-24 15:39:00.5971 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IView'. | 
2014-01-24 15:39:00.5971 | INFO | Replaced IView of type 'System.Web.Mvc.RazorView', named 'Index', with proxy implementation. | 
2014-01-24 15:39:02.0952 | INFO | Replaced IView of type 'System.Web.Mvc.RazorView', named '_LoginPartial', with proxy implementation. | 
2014-01-24 15:39:02.4372 | DEBUG | RuntimePolicy set to 'ExecuteResourceOnly' by IRuntimePolicy of type 'Glimpse.Core.Policy.GlimpseResourcePolicy' during RuntimeEvent 'ExecuteResource'. | 
2014-01-24 15:39:02.6262 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ContentTypePolicy' during RuntimeEvent 'EndRequest'. | 
2014-01-24 15:39:03.6443 | DEBUG | RuntimePolicy set to 'ModifyResponseHeaders' by IRuntimePolicy of type 'Glimpse.Core.Policy.AjaxPolicy' during RuntimeEvent 'BeginRequest'. | 
2014-01-24 15:39:03.6443 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.UriPolicy' during RuntimeEvent 'BeginRequest'. | 
2014-01-24 15:39:09.3516 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IActionFilter'. | 
2014-01-24 15:39:09.3516 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IResultFilter'. | 
2014-01-24 15:39:09.3516 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IAuthorizationFilter'. | 
2014-01-24 15:39:09.3516 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IAuthorizationFilter'. | 
2014-01-24 15:39:09.3606 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IExceptionFilter'. | 
2014-01-24 15:39:09.4686 | INFO | Replaced IView of type 'System.Web.Mvc.RazorView', named 'Login', with proxy implementation. | 
2014-01-24 15:39:10.1626 | INFO | Replaced IView of type 'System.Web.Mvc.RazorView', named '_ExternalLoginsListPartial', with proxy implementation. | 
2014-01-24 15:39:10.1806 | INFO | Replaced IView of type 'System.Web.Mvc.RazorView', named '_LoginPartial', with proxy implementation. | 
2014-01-24 15:39:10.2626 | DEBUG | RuntimePolicy set to 'ExecuteResourceOnly' by IRuntimePolicy of type 'Glimpse.Core.Policy.GlimpseResourcePolicy' during RuntimeEvent 'ExecuteResource'. | 
2014-01-24 15:39:10.2866 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ContentTypePolicy' during RuntimeEvent 'EndRequest'. | 
2014-01-24 15:39:10.7767 | DEBUG | RuntimePolicy set to 'ModifyResponseHeaders' by IRuntimePolicy of type 'Glimpse.Core.Policy.AjaxPolicy' during RuntimeEvent 'BeginRequest'. | 
2014-01-24 15:39:10.7767 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.UriPolicy' during RuntimeEvent 'BeginRequest'. | 
2014-01-24 15:39:12.1908 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IAuthorizationFilter'. | 
@ghost ghost assigned avanderhoorn Jan 29, 2014
@nikmd23
Copy link
Member

nikmd23 commented Jan 29, 2014

@avanderhoorn got any thoughts about this?

@mrnerdhair
Copy link

Started getting a similar error after upgrading EF to 6.1.0-alpha1. Maybe it's the bug referred to here rearing its head again?

@avanderhoorn
Copy link
Member

@migill @mrnerdhair No idea from looking at the above. I'm not seeing any errors or anything out of the ordinary. Any chance that you could create a simple repro or add the glimpse source to your project and track it down a bit more?

@coopermoto
Copy link

I am seeing the same problem with my project. Using the most up to date EF and ASP.NET Identity along with:

  • Glimpse Core 1.8.2
  • Glimpse ADO 1.7.0
  • Glimpse ASP.NET 1.8.0
  • Glimpse EF6 1.6.0
  • Glimpse MVC5 1.5.3

I get:

Unable to determine the provider name for provider factory of type 'System.Data.SqlClient.SqlClientFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.

Stack trace:

[NotSupportedException: Unable to determine the provider name for provider factory of type 'System.Data.SqlClient.SqlClientFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.]
   System.Data.Entity.Infrastructure.DependencyResolution.DefaultInvariantNameResolver.GetService(Type type, Object key) +440
   System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) +83
   System.Data.Entity.Infrastructure.DependencyResolution.CachingDependencyResolver.GetService(Type type, Object key) +179
   System.Linq.WhereSelectArrayIterator`2.MoveNext() +82
   System.Linq.Enumerable.FirstOrDefault(IEnumerable`1 source, Func`2 predicate) +215
   System.Linq.WhereSelectArrayIterator`2.MoveNext() +82
   System.Linq.Enumerable.FirstOrDefault(IEnumerable`1 source, Func`2 predicate) +215
   System.Data.Entity.Infrastructure.DependencyResolution.CompositeResolver`2.GetService(Type type, Object key) +71
   System.Data.Entity.Infrastructure.DependencyResolution.DbDependencyResolverExtensions.GetService(IDbDependencyResolver resolver, Object key) +84
   System.Data.Entity.Core.Common.<>c__DisplayClass5.<GetExecutionStrategy>b__4(ExecutionStrategyKey k) +107
   System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) +83
   System.Data.Entity.Core.Common.DbProviderServices.GetExecutionStrategy(DbConnection connection, DbProviderFactory providerFactory) +387
   System.Data.Entity.SqlServer.SqlProviderServices.UsingConnection(DbConnection sqlConnection, Action`1 act) +316
   System.Data.Entity.SqlServer.SqlProviderServices.UsingMasterConnection(DbConnection sqlConnection, Action`1 act) +455
   System.Data.Entity.SqlServer.SqlProviderServices.GetDbProviderManifestToken(DbConnection connection) +504
   System.Data.Entity.Core.Common.DbProviderServices.GetProviderManifestToken(DbConnection connection) +118

[ProviderIncompatibleException: The provider did not return a ProviderManifestToken string.]
   System.Data.Entity.Core.Common.DbProviderServices.GetProviderManifestToken(DbConnection connection) +459
   System.Data.Entity.Core.Common.DbProviderServices.GetProviderManifestToken(DbConnection connection) +352
   System.Data.Entity.Utilities.DbProviderServicesExtensions.GetProviderManifestTokenChecked(DbProviderServices providerServices, DbConnection connection) +51

[ProviderIncompatibleException: An error occurred accessing the database. This usually means that the connection to the database failed. Check that the connection string is correct and that the appropriate DbContext constructor is being used to specify it or find it in the application's config file. See http://go.microsoft.com/fwlink/?LinkId=386386 for information on DbContext and connections. See the inner exception for details of the failure.]
   System.Data.Entity.Utilities.DbProviderServicesExtensions.GetProviderManifestTokenChecked(DbProviderServices providerServices, DbConnection connection) +300
   System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) +83
   System.Data.Entity.Infrastructure.DefaultManifestTokenResolver.ResolveManifestToken(DbConnection connection) +327
   System.Data.Entity.DbModelBuilder.Build(DbConnection providerConnection) +118
   System.Data.Entity.Internal.LazyInternalContext.CreateModel(LazyInternalContext internalContext) +94
   System.Data.Entity.Internal.RetryLazy`2.GetValue(TInput input) +248
   System.Data.Entity.Internal.LazyInternalContext.InitializeContext() +618
   System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType) +26
   System.Data.Entity.Internal.Linq.InternalSet`1.Initialize() +71
   System.Data.Entity.Internal.Linq.InternalSet`1.AsNoTracking() +28
   System.Data.Entity.Infrastructure.DbQuery`1.AsNoTracking() +75
   System.Data.Entity.QueryableExtensions.AsNoTracking(IQueryable`1 source) +162
   PIO2.Infrastructure.Services.EFUtilService.GetParliaments() in c:\Clients\01 Dandy Booksellers\PIO2\PIO2.Infrastructure\Services\EFUtilService.cs:23
   PIO2.Web.Controllers.PaperController.Index(String parliament, String category) in c:\Clients\01 Dandy Booksellers\PIO2\PIO2.Web\Controllers\PaperController.cs:33
   lambda_method(Closure , ControllerBase , Object[] ) +182
   System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) +242
   System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +39
   System.Web.Mvc.Async.AsyncControllerActionInvoker.<BeginInvokeSynchronousActionMethod>b__39(IAsyncResult asyncResult, ActionInvocation innerInvokeState) +12
   System.Web.Mvc.Async.WrappedAsyncResult`2.CallEndDelegate(IAsyncResult asyncResult) +139
   Castle.Proxies.Invocations.AsyncControllerActionInvoker_EndInvokeActionMethod.InvokeMethodOnTarget() +74
   Castle.DynamicProxy.AbstractInvocation.Proceed() +116
   Glimpse.Mvc.AlternateType.EndInvokeActionMethod.NewImplementation(IAlternateMethodContext context) +115
   Castle.DynamicProxy.AbstractInvocation.Proceed() +595
   Castle.Proxies.AsyncControllerActionInvokerProxy.EndInvokeActionMethod(IAsyncResult asyncResult) +168
   System.Web.Mvc.Async.AsyncInvocationWithFilters.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() +112
   System.Web.Mvc.Async.<>c__DisplayClass48.<InvokeActionMethodFilterAsynchronouslyRecursive>b__41() +452
   System.Web.Mvc.Async.<>c__DisplayClass33.<BeginInvokeActionMethodWithFilters>b__32(IAsyncResult asyncResult) +15
   System.Web.Mvc.Async.<>c__DisplayClass2b.<BeginInvokeAction>b__1c() +37
   System.Web.Mvc.Async.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult) +241
   System.Web.Mvc.Controller.<BeginExecuteCore>b__1d(IAsyncResult asyncResult, ExecuteCoreState innerState) +29
   System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +111
   System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +53
   System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +19
   System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__5(IAsyncResult asyncResult, ProcessRequestState innerState) +51
   System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +111
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +606
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +288

Removing Glimpse solves my problem but also removes Glimpse (IYSWIM).

Would be nice to find a workaround for this issue.

I have a gut feeling that it may be something to do with ASP.NET identity but no idea what.

@avanderhoorn
Copy link
Member

This probably wont tell us much, but can you add this app setting and see what happens?

  <appSettings>
    <add key="Glimpse:DisableAsyncSupport" value="true" />
  </appSettings>

@coopermoto
Copy link

Tried that and no difference I'm afraid.

@coopermoto
Copy link

I've been investigating further myself and apologies, it seems to be EntityFramework 6.1.0-beta1 that is causing the problem.

I need to use this version as I've designed my application to use ASP.NET Identity 2.0 which is also prerelease at the moment. My app won't be released until after these products are out of beta.

I've created a small repo which exhibits the problem. It's a VS2013 ASP.NET Web Application with all default settings. I then updated all packages to the latest stable versions and added Glimpse. All worked OK.

Finally updated the EntityFramework package to 6.1.0-beta1 and anything that tries to hit the database (logging in) comes up with error.

The repo is at https://github.com/coopermoto/MVC5EF6Glimpse

@gregbnewman
Copy link

I hate to be the guy that adds a "Me Too", but I am suffering the same fate. Everything works after removing Glimpse.EF6

Thanks,
Greg

@avanderhoorn
Copy link
Member

@coopermoto Huge thanks on creating the repro. In terms of narrowing down the problem, does the problem occur as soon as you update to 6.1.0?

@avanderhoorn
Copy link
Member

Also can the other people on the thread confirm that the problem they are having is with EF 6.1.0 as well?

@migill
Copy link
Author

migill commented Mar 3, 2014

I was using 6.1 alpha1

On 3 March 2014 16:50, Anthony van der Hoorn notifications@github.comwrote:

Also can the other people on the thread confirm that the problem they are
having is with EF 6.1.0 as well?

Reply to this email directly or view it on GitHubhttps://github.com//issues/713#issuecomment-36530291
.

@coopermoto
Copy link

@avanderhoorn yes it does. For the test repo all was working fine until I updated EntityFramework to 6.1.0-beta1.

@avanderhoorn
Copy link
Member

Fantastic! I'm going see if I can get some help from the EF team, hopefully they can fix it before they go RC/Live.

@coopermoto
Copy link

That would be good if they can before release. It can't be too far away now.

@PaulAtkins
Copy link
Contributor

@coopermoto Did you manage to track the issue down to a specific place in the EF6.1.0-beta1 or Glimpse.EF6 code?

The reason I ask is that I have a very similar setup using the same Glimpse.EF6, AspNet.Identity 2.0 and EF6.1.0-beta1 packages and querying the database is working.

I've been following this thread for a while and the only differences I can see is I'm connecting to SQL2008 and I don't have the Glimpse.Mvc5 package installed, so I'm intrigued at what the issue might be and if I'll suddenly come across it...

@coopermoto
Copy link

@PaulAtkins No I didn't. I'm not that familiar with Glimpse and was just trying to use it for the first time.

@avanderhoorn
Copy link
Member

Just as an update, I've sent off a message to the EF team, so I'm hoping
that they will be able to find it easier than we can. Will keep the thread
updated as we go.

On 3 March 2014 15:22, coopermoto notifications@github.com wrote:

@PaulAtkins https://github.com/PaulAtkins No I didn't. I'm not that
familiar with Glimpse and was just trying to use it for the first time.

Reply to this email directly or view it on GitHubhttps://github.com//issues/713#issuecomment-36554765
.

@mrnerdhair
Copy link

Just confirming that my issue is in conjunction with EF 6.1.0 alpha 1 as
well.

On Mon, Mar 3, 2014 at 4:04 PM, Anthony van der Hoorn <
notifications@github.com> wrote:

Just as an update, I've sent off a message to the EF team, so I'm hoping
that they will be able to find it easier than we can. Will keep the thread
updated as we go.

On 3 March 2014 15:22, coopermoto notifications@github.com wrote:

@PaulAtkins https://github.com/PaulAtkins No I didn't. I'm not that

familiar with Glimpse and was just trying to use it for the first time.

Reply to this email directly or view it on GitHub<
https://github.com/Glimpse/Glimpse/issues/713#issuecomment-36554765>

.


Reply to this email directly or view it on GitHubhttps://github.com//issues/713#issuecomment-36559501
.

@avanderhoorn
Copy link
Member

Great news everyone. Looks like the EF team have found the bug at their end and we should be able to put in a temporary workaround at our end to get around it till their fix goes live. I'll shot through more updates once I get the temp fix in place.

@coopermoto
Copy link

Fantastic! Thanks for your efforts.

@AlonCG
Copy link

AlonCG commented Mar 18, 2014

Thanks (to all) for your efforts on this project,

Just curious, was this actually fixed? I upgraded to EF 6.1 today after an extended weekend, and am now receiving the same error ...

Unable to determine the provider name for provider factory ...

Removing Glimpse does in fact allow the application to run :(

Any ideas?

@hernangm
Copy link

Same problem as @AlonCG here!

@avanderhoorn
Copy link
Member

As a recap this isn't a Glimpse issues its a bug that EF introduced in 6.1+. Internally it looks like they have fixed the issue and all being equal it should got out with 6.1.1 and the next drop of 6.2.

Unfortunately, at this point, there isn't much I can do. All I can recommend is that if you have to update to 6.1.0 or 6.2, you might have to remove the Glimpse.EF/ADO packages :( otherwise wait for 6.1.1 and the next drop of 6.2.

Sorry that I can't do much more.

@hernangm
Copy link

Ok, I suspected it. Let's wait until the EF Team releases a new upgrade. Thanks!

@mehalick
Copy link

I can confirm this became an issue when I updated EF from 6.0.2 to 6.1.0. Downgrading back to 6.0.2 resolved the issue. You can downgrade simply be reinstalling 6.0.2 directly over 6.1.0:

Install-Package EntityFramework -Version 6.0.2

@AlonCG
Copy link

AlonCG commented Mar 19, 2014

@avanderhoorn ... understood that, just thought they caught the issue before they were releasing. No worries, I'll just reinstall Glimpse after EF is updated. Thanks!

@avanderhoorn
Copy link
Member

@AlonCG Note an issue... wish we had of got it in time, but looks like this is going to have to be a permeant note next to 6.1 :(

@avanderhoorn avanderhoorn changed the title After adding Glimpse.EF6 to my ASP.NET MVC 5 / EF6 project, I can no longer access the database Glimpse.EF6 issue with EF 6.1 (and some beta versions of 6.2) means I can no longer access the database Mar 19, 2014
@MisinformedDNA
Copy link

@avanderhoorn You said that you would have a temporary fix. Are you going to be able to do that or are we just waiting for 6.1.1?

@jonathan305
Copy link

I installed the nuget packages not even 15 minutes ago. this is the same error I was having last night with my Northwind solution. I have not yet retested the work solution (I will do that tomorrow morning).

@jonathan305
Copy link

I have NOT downloaded the code. I am using nuget to get the packages. are these packages updated? or should I be downloading and building the source code?

@avanderhoorn
Copy link
Member

@jonathan305 The update hasn't been released to Nuget yet. I usually try and get a second verification first. To do this, if you could download the source and reference the projects in your solution that would be great!

@avanderhoorn
Copy link
Member

Ok, I'm going to get some some packages to you today to try out. Hopefully
that will go a little smoother.

On 16 April 2014 09:37, jonathan305 notifications@github.com wrote:

My mistake - I must have forked the code a couple of days ago. I finally
figured out how to delete my repository I forked again downloaded all the
code rebuild and I no longer get an error, however the SQL Tab is disabled.


Reply to this email directly or view it on GitHubhttps://github.com//issues/713#issuecomment-40599157
.

@avanderhoorn
Copy link
Member

I've packed up the fixes for this to the milestones feed - https://www.myget.org/gallery/glimpsemilestone - http://www.myget.org/F/glimpsemilestone/. Any chance someone could download the packages and try them out.

When you do this, if you could remove all your existing glimpse packages and add all the new ones from this feed.

@avanderhoorn avanderhoorn added this to the vNext milestone Apr 17, 2014
@jonathan305
Copy link

I uninstalled all the Glimpse Nuget Packages then ran:

Install-Package DiscoverPackageSources
Installing 'DiscoverPackageSources 0.1.23'.
Successfully installed 'DiscoverPackageSources 0.1.23'.


Congratulations! The following additional commands have been installed into your
NuGet PowerShell Profile and are now always available in this console:

This Url should show I am using the latest http://getglimpse.com/Version/Install/?Glimpse.Mvc5=1.5.3&Glimpse.AspNet=1.8.1&Glimpse.EF6=1.6.1&Glimpse.Ado=1.7.0&Glimpse=1.8.4

After reinstalling the Glimpse Nuget Packages to my Northwind project I still am unable to see the SQL Tab as you can see from the screenshot here: http://tinypic.com/r/2hdp768/8

My Glimpse.EF6 Runtime version is v4.0.30319

Can't figure out what I am doing wrong...

@CGijbels
Copy link
Collaborator

@jonathan305 Just to make sure, but how did you locate the Glimpse packages to install? Did you searched for them in the new package source only or is it possible that you installed from nuget.org again? If you use the package manager console, make sure to select the correct package source at the left top and if you are using the NuGet UI, then make sure you don't select all but only the glimpsemilestone package source

@CGijbels
Copy link
Collaborator

Keep in mind that the version number has not yet been increased, that is why the install page says you have the latest version.

maybe enable glimpse logging to make sure their is no error that might be an indication why the SQL tab is not showing...

If all is well and you have the latest source, then maybe the patch is not working?

@jonathan305
Copy link

I get a big log file but no errors one warning about a missing in home/index

2014-04-17 19:18:37.3187 | DEBUG | Preloaded all referenced assemblies with System.Web.Compilation.BuildManager.GetReferencedAssemblies() |

2014-04-17 19:18:38.8299 | DEBUG | Discovered IInspector of type 'Glimpse.EF.Inspector.EntityFrameworkInspector' and added it to collection. |
2014

2014-04-17 19:18:38.8455 | DEBUG | Discovered ITab of type 'Glimpse.Ado.Tab.SQL' and added it to collection. |

So the Tab is added but it's not enabled... Meaning I can't click on it. I can see there is a SQL tab but the text color is black, the Session Tab and the ModelBinding Tabs are also black... all the other tabs have text color white... What else can I check?

@avanderhoorn
Copy link
Member

@jonathan305 Are you able to make the source for the solution available somewhere?

Additionally, can anyone else check out the patch to see if it works or if they get the same thing?

@avanderhoorn
Copy link
Member

@jonathan305 Huge thanks for this!!! One last favour, any chance you can turn logging on and send through the log? When you turn it on, just go as far as replicating the - i.e. not seeing data in the SQL tab when you think you should (if it happens straight away thats great) and then send it through.

@avanderhoorn
Copy link
Member

@jonathan305 I think I've worked out your issue. I'm pretty sure the fix I did solved the original issue you where having. Looking at your solution, the reason you are not seeing the SQL tab enabling is that you aren't using the Ajax/History tabs. Since all the requests after the initial load are done via ajax, you need to use the Ajax/History tabs to view and 'inspect' these (note how the URL in the Glimpse title bar doesn't update as you navigate between pages).

Playing with your sample, most pages don't show up in the Ajax tab, because RequireJS Text doesn't include the X-Requested-With header that ASP.Net looks for to tell Ajax requests from normal requests. This isn't the end of the earth since the History tab, picks up all of your requests, regardless of if they are flaged as being ajax based or not. Hence, go to the History tab and select the request that is associated with the localhost:25061/#/customer/index request and the SQL tab should become enabled.

If you did want to fix things so that those calls do show up in the Ajax tab, @jrburke talks about how to do this here - https://github.com/requirejs/text#custom-xhr-hooks (requirejs/text#58).

@avanderhoorn
Copy link
Member

@MisinformedDNA @migill @AlonCG Any chance that one of you guys can test the package update from here https://www.myget.org/gallery/glimpsemilestone - http://www.myget.org/F/glimpsemilestone/

@jonathan305
Copy link

it works now. thank you!

@MisinformedDNA
Copy link

I will test it shortly. Give me an hour? Thanks for the reminder.

@MisinformedDNA
Copy link

Uninstalled all Glimpse packages. Added MyGet feed. Installed Glimpse.MVC5 and Glimpse.EF6. Upgraded to EF 6.1.

All seems to be working just fine! w00t!

@avanderhoorn
Copy link
Member

Ya! Thanks guys. I'll try and wait for a couple more confirmations to come in before doing the release. I'm going to aim for Monday.

@hastarin
Copy link

I had this problem a while back and just removed the EF6 package. Today I decided to Google it and came across this, so installed the packages and it's working for me with EF6.1 as well.

@avanderhoorn
Copy link
Member

@hastarin Just to confirm you used the packages I had referenced from MyGet?

@dmayhak
Copy link

dmayhak commented Apr 21, 2014

Just confirming. I just (uninstalled and) installed from the MyGet feed and all appears to be working. (MVC5, EF6.1)

Thanks for the fix!!!

@hastarin
Copy link

@avanderhoorn Yes confirmed it was the packages you referenced from MyGet. The ones on NuGet have the issue described.

@avanderhoorn
Copy link
Member

Thanks everyone for the feedback. I'm going to close this one off.

@avanderhoorn
Copy link
Member

Just letting you know that this has now gone live. Thanks to all involved in getting this fixed.

@tafs7
Copy link

tafs7 commented Apr 23, 2014

Very timely, as I just started a new project yesterday and ran into this issue before going home for the day, only to find this thread today :)

@avanderhoorn
Copy link
Member

:D

On 23 April 2014 18:38, tafs7 notifications@github.com wrote:

Very timely, as I just started a new project yesterday and ran into this
issue before going home for the day, only to find this thread today :)


Reply to this email directly or view it on GitHubhttps://github.com//issues/713#issuecomment-41223446
.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests