安装的默认数据
是否可以将默认数据添加到我的 SchemaExport.txt 中? 如果不是,最好的方法是什么? 我想要一个 *.sql 文件,其中包含“表”和“默认数据”的创建脚本,或者有更好的方法吗?
Is it poosible to add default data to my SchemaExport.
If not what's best way to do that?
I would like to have one *.sql file with creation script for "tables" and "default data", or is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我只有一个小控制台应用程序,它调用 SchemaExport,然后创建默认实体并对其调用
Session.Save()
。我所要做的就是在该应用程序上配置连接字符串并运行它,然后..瞧!
实际上根本不需要 .sql 文件,我喜欢这一点。
I just have a little console application which calls SchemaExport and then creates default entities and calls
Session.Save()
on them.all I have to do to is configure the connection string on that app and run it, and.. voila!
actually no .sql files needed at all, which I like.
我已经创建了架构,然后必须运行另一个脚本来插入测试数据。
作为另一个选择,您可能需要查看这两个数据构建器项目,它们允许您创建 N 个实体,然后您可以保留这些实体。
I have created the schema then had to run another script to insert test data.
As another option you may want to look at these two data builder projects which allow you to create N number of entities which you could then persist.