Tagged Questions
The efpocoadapter tag has no wiki summary.
12
votes
6answers
6k views
“Metadata information not found” while using EF4's POCO Template?
I just installed the POCO Template for EF4. I have a single entity in my model, AnnouncementText, and the T4 files seem to be properly generated. Attempting to access this new entity is throwing the ...
5
votes
4answers
9k views
DataContractSerializer: How to serialize classes/members without DataContract/DataMember attributes
DataContractSerializer requires classes and members to be marked with the DataContract and DataMember attributes. However, in my case the classes are auto-generated with the EFPocoAdapater framework ...
2
votes
1answer
74 views
Memory usage in EF 1 web service application keeps growing on each call - query cache issues?
hoping some of you clever people can help me out here!
We have an ASP.NET web service app, using Entity Framework 1 and EFPocoAdapter. The mem usage of the app pool running this web service keeps ...
2
votes
1answer
814 views
Can I get a POCO from EF4's function import?
In the context of Entity Framework 4, the default behavior when adding a function import is to call it via ExecuteFunction<T>(), where T must apparently implement some property change ...
2
votes
2answers
2k views
Entity Framework Foreign Key (or lack thereof)
So I have pouring of this code forever, trying to figure this out... I am using Entity Framework 1.0 with ASP.NET MVC in .NET 3.5 SP1 with EFPocoAdapter (so separate Poco classes).
So I have the ...
1
vote
1answer
2k views
How to design an application using Entity Framework 4.1, POCOs, and the Repository Pattern
I'm trying to design an application, in ASP.NET MVC, using Enterprise Library 4.1 I added the Entity Framework POCO template and moved the generated entities to a separate "Entities" project. ...
1
vote
0answers
169 views
Entity Framework with POCO Template and FKs in Model - Null Ref Exception
I'm using Entity Framework 4 with the POCO code generation template from Microsoft downloaded from the Visual Studio gallery. I am also leaving the default option to "Include foreign keys in model" ...
1
vote
0answers
130 views
EFPocoAdapter — PopulatePocoEntity has null PocoEntity
I'm trying EF with the EFPocoAdapter for the first time. I have a relatively simple TPH scenario with one table and two types, each inheriting from an abstract base class.
My model validates through ...
0
votes
1answer
149 views
Entity Framework v1 and Cached POCO update
I am using EF v1 and Velocity cache in my .NET 3.5 application. My cached objects are a representation of the Entity model in database. So I decided to use EF v1 with POCO adapters. So there's an ...
0
votes
1answer
150 views
EF Saving changes suddenly stopped working
SaveChanges() on my EFv4 POCO context suddenly stopped working. It issues an error "Cannot insert NULL value into column 'postalcode' of table Clients"
Client entity contains a reference to PostCode ...
0
votes
2answers
196 views
Can't do projections to Persistence Ignorance (POCO) class using EFPocoAdapter
Given a simple POCO class such as:
public class User { public int Id { get; set; } public string Name { get; set; } public string Password { get; set; } }
When I try a query with projection to ...