Tagged Questions
The ssdl tag has no wiki summary.
2
votes
2answers
655 views
EF4: How to generate: .csdl, .edmx, .msl and .ssdl files
I'm working on a project that is using linq to sql.
In my model folder I have 4 files:
model.csdl
model.edmx
model.msl
model.ssdl
But that model is out of date with the current database.
I'm ...
1
vote
1answer
500 views
Entity Framework - Entity Mapping problem
I have two tables: Address and Contact which are joined on contactID (in Contact). Both of these tables have entities in my Entity data model (EF 4.0) and I do not wan't to modify them.
I do want to ...
1
vote
2answers
525 views
Mysql EF Stored Procedure, did not generate C# part
I have mysql database with a store procedure. When I added to schema, I found in edmx this:
<Function Name="abzac_GetByPage" Aggregate="false"
BuiltIn="false" NiladicFunction="false" ...
1
vote
3answers
3k views
MySql and Entity framework randomly gives Schema specified is not valid error
I'm using Entity Framework to access my MySQL database. The model was generated using EDMGEN2 and everything works great. I can do all my linq-to-entity query goodness...
...until an indeterminate ...
1
vote
1answer
531 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 ...
1
vote
2answers
877 views
How does the Entity Framework tell whether a multiplicity of “one” or “zero or one” should be used on a relationship?
I'm programmatically creating an edmx file as part of our code generation process and I'd like to know how the designer decides to use "1" or "0..1" for a relationship when you "Update model from ...
0
votes
0answers
13 views
add tvf in entityframework through modify SSDL
I have some tvf in my database, but EFV4.0 seems don't support tvf, is it possible to modify the SSDL file to add my tvf in? I don't want to use stored procedure.
Some one can help?
Thanks in advance!
...