- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近遇到的事情。
我有一个动态生成连接字符串的项目,我正在尝试在包装这些字符串的上下文中使用 MigrateDatabaseToLatestVersion
。每次我这样做时,我都会看到我的动态数据库没有被创建,而是我的默认构造函数连接字符串(用于测试)上的数据库一遍又一遍地迁移。
在深入研究 EF 迁移源代码后,我发现 MigrateDatabaseToLatestVersion
有一个构造函数
// Summary:
// Initializes a new instance of the MigrateDatabaseToLatestVersion class specifying
// whether to use the connection information from the context that triggered initialization
// to perform the migration.
//
// Parameters:
// useSuppliedContext:
// If set to true the initializer is run using the connection information from the
// context that triggered initialization. Otherwise, the connection information
// will be taken from a context constructed using the default constructor or registered
// factory if applicable.
public MigrateDatabaseToLatestVersion(bool useSuppliedContext);
不是轻率,但您想要迁移不是正在迁移的上下文的原因是什么?为什么这是默认值?有没有人对这里的想法有任何见解?
最佳答案
我想自己知道这个问题的答案。我不知道为什么上下文是这样设计的。但是,我可以大胆猜测为什么当前默认值为 useSuppliedContext=false
。 .
我反编译了 EntityFramework 的第一个版本以包含迁移支持,EntityFramework-4.3.0,因为我怀疑默认行为是为了向后兼容。我查看了 IDatabaseInitializer<TContext>.InitializeDatabase(TContext context)
的反编译实现在 MigrateDatabaseToLatestVersion
.你猜怎么了?在 EntityFramework-4.3.0 中,context
该方法的参数被完全忽略。所以它不可能响应明确提供的连接参数/设置,因为这些只能通过 context
访问。变量。
貌似支持尊重context
在 EntityFramework-6.1.1 中添加。在此之前,您唯一的选择是将连接字符串传递给 MigrateDatabaseToLatestVersion
的构造函数。我认为这会阻止您使用相同的 DbContext
在同一进程中为不同的后端键入。我敢打赌,如果 EntityFramework 默认启用,尊重上下文(并且行为正确,IMO)的新功能不会被 EntityFramework 接受,因为这会改变稳定项目可能依赖的行为,否则会阻止项目采用它。
确切的推理实际上在 commit 777a7a77a740c75d1828eb53332ab3d31ebbcfa3 中作为评论给出通过 Rowan Miller :
Also swapping the new useSuppliedContext parameter on MigrateDatabaseToLatestVersion`.cs to be false by default since we are going to be shipping this change in a patch release.
关于entity-framework - MigrateDatabaseToLatestVersion useSuppliedContext = false 的目的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45285687/
class test { public static void main(String[] args){ Object o1 = new Object(); O
我以为我理解了 Python 中的这两个单例值,直到我看到有人在代码中使用 return l1 or l2,其中 l1 和 l2 都是链表对象,并且(s)他想如果不为 None 则返回 l1,否则返回
这个问题在这里已经有了答案: Why does the expression 0 >> (True == False) is False True >>> True == (False is Fals
为什么在 Python 中它是这样评估的: >>> False is False is False True 但是当用括号尝试时表现如预期: >>> (False is False) is False
我有一个名为“apple”的表,我编写了以下查询: select name, count(name), case when istasty is null then fal
python boolean 逻辑中的运算符优先级 print(False==True or False) #answer is True print(False==(False or True))#
请不要看条件,因为它们在这里是为了便于理解行为 为什么 result 等于 true ? boolean result = false && (false)?false:true; 我知道我们可以通过
乍一看,这篇文章可能看起来像是重复的,但事实并非如此。相信我,我已经查看了所有 Stack Overflow,但都无济于事。 无论如何,我从 Html.CheckBoxFor 得到了一些奇怪的行为。
这个问题在这里已经有了答案: python operator precedence of in and comparison (4 个答案) 关闭 6 年前。 我的一位前辈演示了它,我想知道这是否是
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
为什么 {} == false 评估为 false 而 [] == false 评估为 true在 javascript 中? 最佳答案 这是根据 Abstract Equality Comparis
这个问题在这里已经有了答案: Why does (1 in [1,0] == True) evaluate to False? (1 个回答) 关闭7年前。 为什么使用括号时这些语句按预期工作: >>
我试过搜索这个,但我真的不知道如何表达它以查看是否有其他人发布了答案。 但是,我正在制作一个国际象棋游戏和一个人工智能来配合它,这是非常困难的,我的问题是当我检查两个棋子是否在同一个团队时我必须做 (
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
为什么 为 false || null 返回与 null || 不同的结果错误? 我可以安全地依赖 return myVar || false 如果 myVar 为 null 或 false,则返回
我正在尝试遵循 NHibernate 教程,“你的第一个基于 NHibernate 的应用程序:修订 #4”在 NHibernate Forge。 但线路:new SchemaExport(cfg).
这个问题在这里已经有了答案: Empty list boolean value (3 个答案) 关闭 4 年前。 我是 Python 的新手,不理解以下行为: 为什么要声明 [] == False
以下函数循环访问对象的值。如果值为空this.hasInvalidValue设置为true ,如果不为空 this.hasInvalidValue设置为false : user: { email:
所以我正在玩 java.lang.reflect 东西并尝试制作类似 this 的东西。这是我的问题(可能是一个错误): 将字段设置为 true 的方法的代码: private static void
当我在编程时,我的 if 语句出现了意想不到的结果。 这个代码警报怎么会是真的?我在 W3S 没有找到任何可以帮助我的东西,我真的很想知道为什么这些警报是“正确的” window.alert(fals
我是一名优秀的程序员,十分优秀!