0
votes
1answer
37 views
Using EDMX or EDML for entities design
Two quick quesitons:
Benefits of using EDMLs vs. EDMXs - when would you choose to use one over the other
DevArt's Entity Developer vs. Visual Studio's Entity Designer - I know this part of the …
0
votes
1answer
23 views
Pluralization service in Entity Framework - Visual Studio 2008?
Does any one know if there is kinda implementation/addon for VS 2008 SP1 for pluralization service in entity framework like there is gonna b in vs 2010?
example:
In database:
Entity Order
…
1
vote
3answers
70 views
How can I use the EntityModelSchemaGenerator to generate less then my entire model?
We have a big (and growing!) database. We're trying to not have to build the models by hand, and we found this
EdmGen2 which is supposed to build our EDMX entity models for us.
Since we have such …
0
votes
1answer
49 views
How can I get my table back after I remove it from my EDMX file in Linq-to-Entities?
I am having trouble with my Linq2Entities model - I might be missing something obvious here.
Here is what I did:
Added an EDMX model file
Added TableX to the model
Went back to SQL Management …
0
votes
1answer
31 views
Visual Studio Model Won’t Show SOME New Tables
I added some tables to my DB, and refreshing the model didn't work. So I deleted my .edmx file completely. I then recreated the model according to my updated DB, but the same tables were still …
0
votes
3answers
444 views
Using LINQ to Entity Framework with DB2
Is there an IBM Driver so we can use Linq to Entity framework to connect to DB2 and generate the DB2 entities on the desinger edmx file? Any links would be greatly appreciated
0
votes
1answer
138 views
When is the StoreGeneratedPattern attribute added to a property in the ssdl? (Entity Framework)
When I create a new diagram and "Update model from database", the StoreGeneratedPattern attribute gets added to some primary key properties, but not all of them. What criteria does the designer use to …
0
votes
2answers
86 views
Using nAnt to build projects containing EDMX
I've been working on training myself in the ways of using nAnt over the past few days, and have stumbled across an issue. During the development process, I've been using the new tools, like Entity …
4
votes
2answers
242 views
Is it possible to update a sql database schema from an edmx in Visual Studio 2008?
So with LINQ-to-SQL I know you can update the database from the LINQ objects and update the LINQ objects from the SQL.
I am using LINQ's entity framework (a.k.a. LINQ-to-entities) and I can update …
0
votes
0answers
51 views
Getting from EF’s entity NavigationProperty to the related NavigationProperty
I have T4 template that generates Business layer POCOs from an EDMX file.
Example: Two EDMX entities:
Person (has Files navigation property)
File (has Person navigation property)
Generated class …
