Search Results

5
votes

What have your experiences been with Entity Framework?

Well, I just finished implementing a complete system in EF, it was my first real experience with the EF in a production environment. The app is running now for about 45 days with 100's of users hi …
0
votes

Entity framework Update fails when object is linked to a missing child

Nope, EF will always enforce constraints. The only way I could think of to do it would be to gen a second model that has no constraints, or has them removed that is used when you do not wish to en …
0
votes

Modeling entities for specific applications - Entity Framework

EF was really designed for you to gen the model for each specific use case. You are not supposed to need to gen a single large monolithic model because they are so easy to build and update (that w …
2
votes

ADO.NET Entity Connection String for Multiple Projects

You have to put those connection strings in each applications app.config file. If you have a DAL that you generated the model in, and then try to consume the DAL in an EXE the same thing will happ …
0
votes

Comparing Date / DateTime ine Entity SQL Where clause…

You will have to know the format that the user input the data. Take a look at the DateTime.Parse and ParseExact functions. …
2
votes

Does the using the entity framework put a lot of pressure on memory, like the DataSet does?

"Does the entity framework have a memory efficient pattern similar to the SqlDataReader?" No, the EF makes complete copies of objects in RAM similar to a DataSet and DataRelations, etc, but …
1
vote

Entity Framework: Conditional foreign key

The only way you could accomplish what you wanted is to build a Trigger to handle the processing on the server side. You can't map FK's like that to multiple tables. But a trigger can handle that …
0
votes

Read only Search function. Stored Procedures or IQueryable with POCOs and Ef 4.0

You said the ultimate goal is performance. That would mean ADO.NET and straight SQL to me. Adding EF on top of it is a huge amount of overhead for something that needs no state tracking, no updat …