我正在阅读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);
}
答案 0 :(得分:0)
方法EnsureLoadedForContext
不会加载上下文,但会为传递给方法的上下文类型加载配置。当您查看具有创建方法的类型名称的方法名称(DbConfigurationManager.EnsureLoadedForContext
)时,更清楚的是该方法与加载配置而不是加载上下文有关。最后,您可以查看对其中一个bugs的评论:
只要知道上下文类型,就会从各个位置调用EnsureLoadedForContext,以确保找到正确的DbConfiguration。