0
votes
0answers
8 views
How does LLBLGen Compare to Nhibernate and Linq to Entities Performance wise
I am currently using Linq to entities. i am hearing from colleagues that they are having performance issues with L2E and had to implement caching in several places. I have researched some ORMs but …
0
votes
1answer
17 views
Seqential & continuous invoice number in Hibernate / ColdFusion ORM?
One of the requirements of my billing software is that the invoice number must be sequential & continuous. (no invoice number can be skipped).
I tried setting the invoice number as PK, and tried …
0
votes
4answers
47 views
NHibernate and python
Hi,
We have an existing C# project based on NHibernate and WPF. I am asked to convert it to Linux and to consider other implementation like Python. But for some reason, they like NHibernate a lot …
0
votes
1answer
19 views
DAO, ORM and Queries
There is a need to update one field to the same value in a heap of records. Using the DAO/ORM structure, I would retrieve each parent object, loop through each child object, update it's field, and …
0
votes
1answer
32 views
How to set an FK column value without retrieve it
Hi, i want to set a new value to my entity objects FK column, but i cant find the property to set. I dont want to get record from db.
I have a db like that
Db Tables:
Concept …
0
votes
3answers
34 views
ORM for SQL Scripting
What is the best way to run simple sql scripts in a database (preferably db implementation agnostically)?
So, for illustration purposes, using your best/suggested way, i'd like to see a script that …
0
votes
2answers
36 views
Self-Referential ManyToMany Convention in CakePHP
I have an existing data model where I can rename things freely to match CakePHP's conventions. I have a type of graph node, where a node can have an arbitrary number of child nodes and an arbitrary …
0
votes
1answer
13 views
Where IdentityMap belongs: UnitOfWork or Repository?
If I implement some simple OR/M tool, where do I put identity map? Obviously, each Repozitory should have access to its own identity map, so it can register loaded objects (or maybe DataMapper is the …
-1
votes
1answer
33 views
What’s the best strategy to invalidate ORM cache?
We have our ORM pretty nicely coupled with cache, so all our object gets are cached. Currently we invalidate our objects before and after our insert/update/delete of our object. What's your …
2
votes
1answer
41 views
Multi-Database Transactional System & ASP.NET MVC
So I have a challenge to build a site that people online can use to interact with organizations.: http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application
One of the requirements …
1
vote
2answers
24 views
JPA - Persisting a One to Many relationship
Hi,
Maybe this is a stupid question but it's bugging me.
I have a bi-directional one to many relationship of Employee to Vehicles. When I persist an Employee in the database for the first time (i.e. …
0
votes
1answer
38 views
What’s the best way to make small schema updates with Doctrine/Symfony?
What's the best way to make small schema updates to your symfony/doctrine application?
My issue is, I'm working on a new side-project and occasionally find myself adding a new column here, a new …
0
votes
2answers
20 views
Maintaining / Auto-generating IBatis SQL Maps?
Hello,
I just started a new job and inherited the project from hell.
Hell = {2 years over schedule, overly complex, uses both oracle and sql server}
There are 100+ stored procedures in the Oracle …
1
vote
1answer
31 views
How might I set up data plumbing for Silverlight to MySQL in my situation?
In short: What is a good method for setting up read-only data access from Silverlight to a MySQL database?
Here are the details of my situation:
I'm currently trying to set up a Silverlight …
0
votes
2answers
13 views
What to use for a flexible data access layer - OLEDB or…?
I am creating a quick and dirty prototype (C#) of an object-relational mapping tool. I would like to support at least two kinds of databases - one will be Microsoft SQL Server 2005/2008 and the other …
