1

我正在阅读 EF 的源代码,并在下面找到了这个方法。根据方法名,确定dbcontext被加载。当我使用 EF Codefirst 示例对此进行测试时,此方法将当前程序集(我的示例控制台)添加到“_knownAssemblies”中。

我没有看到任何加载程序集的代码。而且我没有看到任何检查程序集是否已加载的代码。

这是命名问题还是我错过了什么?提前致谢。

 public virtual void EnsureLoadedForContext(Type contextType)
        {
            DebugCheck.NotNull(contextType);
            Debug.Assert(typeof(DbContext).IsAssignableFrom(contextType));

            var contextAssembly = contextType.Assembly;

            if (contextType == typeof(DbContext)
                || _knownAssemblies.ContainsKey(contextAssembly))
            {
                return;
            }

            if (_configurationOverrides.IsValueCreated)
            {
                lock (_lock)
                {
                    if (_configurationOverrides.Value.Count != 0)
                    {
                        return;
                    }
                }
            }

            if (!ConfigurationSet)
            {
                var foundConfigurationType =
                    _loader.TryLoadFromConfig(AppConfig.DefaultInstance) ??
                    _finder.TryFindConfigurationType(contextType);

                if (foundConfigurationType != null)
                {
                    SetConfigurationType(foundConfigurationType);
                }
            }
            else if (!contextAssembly.IsDynamic // Don't throw for proxy contexts created in dynamic assemblies
                     && !_loader.AppConfigContainsDbConfigurationType(AppConfig.DefaultInstance))
            {
                var foundType = _finder.TryFindConfigurationType(contextType);
                if (foundType != null)
                {
                    if (_configuration.Value.Owner.GetType() == typeof(DbConfiguration))
                    {
                        throw new InvalidOperationException(Strings.ConfigurationNotDiscovered(foundType.Name));
                    }
                    if (foundType != _configuration.Value.Owner.GetType())
                    {
                        throw new InvalidOperationException(
                            Strings.SetConfigurationNotDiscovered(_configuration.Value.Owner.GetType().Name, contextType.Name));
                    }
                }
            }

            _knownAssemblies.TryAdd(contextAssembly, null);
        }
4

1 回答 1

0

该方法EnsureLoadedForContext不加载上下文,而是加载传递给该方法的上下文类型的配置。当您查看具有创建方法的类型名称的方法名称时(DbConfigurationManager.EnsureLoadedForContext),更清楚的是,该方法与加载配置相关,而不是加载上下文。最后,您可以查看对其中一个错误的评论:

一旦知道上下文类型,就会从各个地方调用 EnsureLoadedForContext,以确保找到正确的 DbConfiguration。

于 2013-06-05T03:46:04.427 回答