Tagged Questions

2
votes
2answers
312 views

Entity Framework Model first, dont generate db but map to existing tables

We'd like to use model first to generate clean EF models for our application but instead of having the model generate a new db schema we'd like to then manually do a table mapping within the entity to ...
2
votes
2answers
752 views

CakePHP - how to apply translate behavior to existing database?

I have and existing application in CakePHP with a database. The task is to apply translate behavior to its models. The problem is that i18n.php script just creates _i18n table but doesn't copy ...
0
votes
0answers
8 views

.NET Entity Framework. How to do One to One relationship with several join tables in between in existing database using Fluent API

With a legacy database (and strict orders not to modify it) and using Entity framework I have the following: MODELS public class EntityObjectA { public Guid Id { get; set; } public string ...
0
votes
3answers
285 views

Using an existing database of another Rails application in a new Rails application

I'm new to Rails. I had created a Rails application earlier and also collected a few data records in the development database. Suppose, I create a new Rails application and I prefer to use the ...