The identity-map tag has no wiki summary.
0
votes
1answer
142 views
Identity map pattern and table data gateway c#
I´m implementing Identity map pattern and DataMapper pattern in my project. But I have some problems.
When I´m getting data from database by Gateway I´m creating new instance of object and return ...
3
votes
1answer
95 views
Why entity framework isn't implement identity map with unit of work?
I have written test code as bellow:
Entities db = new Entities();
var place = new Place
{
Id = Guid.NewGuid(),
Name = "test",
...
1
vote
2answers
778 views
How to invalidate entity framework 4 internal cache
As I know Entity Framework implements the Identity Map Pattern, so EF caches some entities in the memory.
Let I give you example.
var context = new StudentContext();
var student = ...
1
vote
0answers
393 views
Getting newly added entities from ObjectContext before saving changes
OK, I read these:
EntityFramework show entities before saving changes
Where added objects are stored in ObjectContext?
I guess there is no clear solution of the problem (although the second post is ...
1
vote
2answers
529 views
Which Android/Java ORM uses “object caching” like Hibernate does?
I saw a bunch of questions about lightweight alternatives to Hibernate, especially for Android. But which of them has the “Identity Map” pattern?
This pattern makes sure that any object representing ...
2
votes
2answers
377 views
sqlalchemy identity map question
The identity map and unit of work patterns are part of the reasons sqlalchemy is much more attractive than django.db. However, I am not sure how the identity map would work, or if it works when an ...
2
votes
2answers
273 views
Where can I find a C# implementation of the “Identity Field” (fowler) pattern that support multiple fields of different types
I've found one that allows multiple fields of type long. However, i'm not sure how useful that is since sometimes we may have Guids or even dates for example.
I could also modify his to support my ...
1
vote
3answers
188 views
How long should a DataContext live?
I was just wondering how long should a DataContext really live. All the patterns and practices books like Dino Esposito's Microsoft .NET: Architecting Applications for the Enterprise tell you, ...
4
votes
2answers
1k views
What is the best structure to implement an Identity Map?
Although a DataTable is a memory hog, wouldn't a DataTable be the best choice to implement and IdentityMap if the set of objects is very large since retrieval time is O(1)?
Update
If I decide to use ...