Tagged Questions
The identity-map tag has no wiki summary.
4
votes
2answers
876 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 ...
2
votes
2answers
131 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
154 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 ...
0
votes
0answers
164 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 ...
0
votes
2answers
174 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 ...
0
votes
2answers
113 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, ...