在我们的软件中使用 Code First 数据库生成是否需要完整的 Net 4 框架?
我们目前正在将代码从 VB6 迁移到 Net4。我们现在正处于将旧的 Access 数据库转换为 SQLCompact 4.0 并使用实体框架访问它的阶段。当我们更新应用程序时,向旧的 Access 数据库添加字段和表非常容易。现在,使用实体框架,我们打算利用代码迁移包,以便在发布应用程序的新版本时能够更新客户端的数据库。
为此需要完整的框架吗?这可能是一个问题,因为 Net 4 Client Profile 现在很常见,但完整框架肯定不是。
我愿意接受其他建议;-)
We are currently migrating our code from VB6 to Net4. We are now at the stage that we will convert the old Access databases to SQLCompact 4.0 and access this using the Entity Framework. It was very easy to add fields and tables to the old Access databases when we updated our application. Now, using the Entity Framework we intend to make use of the Code Migrations package to be able to update the client's database when we release new versions of our application.
Is the Full Framework necessary for this? That would be a possible problem as the Net 4 Client Profile is quite common nowadays, but the Full Framework most certainly is not.
I am open to other suggestions ;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我创建了一个针对 .NET 4 Client Profile 并使用 EF 4.3 的基本控制台应用程序。效果很好,只用了大约 5 分钟。
I created a basic console app targeting .NET 4 Client Profile and using EF 4.3. It worked fine, and only took about 5 minutes.