4
votes
Should I share the Entity-Framework context or create a new context for each operation?
It all depends on your app.
A key consideration is that ObjectContext is not threadsafe so for a web app ObjectContext per request is the way to go.
For a Win Forms app you can loo …
2
votes
How to force ADO.NET Entity Framework to regenerate code?
Right click on the EDMX file and select Run Custom Tool.
There is also a command line code generation tool called edmgen (available from a VS Command Prompt).
…
0
votes
How to place smaller tables in Domain & DB along with .NET entities
How about create a single relationship to an entity that also knows its type. i.e. Producer or Entry etc.
…
2
votes
Enitity Framework with long-running object context
You can use the ObjectContext.Refresh method to update an existing context.
…
0
votes
How to use ADO.net Entity Framework with an existing SqlConnection?
You can do this by using the constructor of your generated ObjectContext that accepts an EntityConnection. When yo …
2
votes
How to use ADO.net Entity Framework with an existing SqlConnection?
That forum post has the answer:
MetadataWorkspace workspace = new MetadataWorkspace(
new string[] { "res://*/" },
new Assembly[] { Assembly.GetExecutingAssembly() });
using (S …
1
vote
Linq-to-entities: How to create objects (new Xyz() vs CreateXyz())?
You can absolutely use the second, more natural way. I'm not even sure of why the first way exists at all.
…
1
vote
Manage ADO.NET Entity Framework ObjectContext in ASP.NET MVC
Using a single ObjectContext per request is a good idea.
If you are handling it yourself you need to put the context in the HttpContext.Items collection. On EndRequest you need to ensure th …
1
vote
ADO.NET Entity Framework generates unexpected, problem INSERTs
I haven't had a detailed look at the code but the first thing to consider is that you shouldn't need to call DeleteObject at every level of your hierarchy. EF like other O/RMs tracks objects and th …
-1
votes
Adding a Business Layer to ADO .NET Entity Framework
Hi Bradley,
One way to do this would be like so:
Define your AllBankAccounts property (possibly even make it private).
Define the BankAccounts property in the partial …
1
vote
Is there an in-memory provider for Entity Framework?
A better approach here might be to use the Repository pattern to encapsulate your EF code. When testing your services you can use mocks or fakes. When testing your repositories you will want to hit …
4
votes
Linq To Entity Framework selecting whole tables
Remove the .AsEnumerable()s from the query as these are preventing the entire query being evaluated on the server.
…
2
votes
Entity Framework get CurrentContext
You need to pass the context to this method, or, better yet, rather than pass in width and height, pass in the size object itself.
…
3
votes
Mocking Entity Framework Context
A well known way of doing this is to use the Repository pattern. This acts as a layer over your concrete data access implementation and provides a place to inject test doubles.
…
1
vote
Looking for examples of ASP.NET MVC applications with the Entity Framework
The EF team, in conjunction with P&P, are currently in the process of developing an EF (version 4) data access reference implementation that uses ASP.NET MVC as the front-end.
The proje …
