SubSonic 3 测试数据库“SubSonic”在哪里?
我有时可能有点糊涂,但我在哪里可以获得 SubSonic 3 测试项目引用的 SubSonic 数据库?
I may be a little dense at times but where do I get the SubSonic database referenced by the SubSonic 3 test project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该数据库是使用我们的迁移内容动态创建的。 因此,只需创建一个名为“SubSonic”的数据库,测试即可完成其余的工作。 请参阅Setup() 例程以了解其工作原理——表是在每次测试时创建的。
The database is created on the fly using our migrations stuff. So - just create a DB called "SubSonic" and the tests do the rest. See the Setup() routine to see how this works - the tables are created on every test.
您通常可以在 SubSonic 的 github 中找到所需的一切。 我认为 DbScripts 目录可能有您需要的内容。
http://github.com/subsonic/SubSonic-3.0/tree/master
You can usually find everything you need in SubSonic's github. I think the DbScripts directory probably has what you need.
http://github.com/subsonic/SubSonic-3.0/tree/master