1
vote
2answers
49 views
How could create a crosstab SQL query with Django ORM?
Using Django 1.1, how could I create a crosstab (pivot table) SQL query using the ORM?
UPDATED:
These are the models and output requirements:
class Store(models.Model):
name = …
0
votes
0answers
55 views
How to make Doctrine delete table prefixes from class names?
Hello, I'm using Doctrine 1.1.5 and I'd like to know if there is some option for remove table prefix from files and class names when calling Doctrine::generateModelsFromDb or …
1
vote
3answers
678 views
Mapping multi-Level inheritance in Hibernate
Currently I have a structure like this:
A
|
+--B
|
+--C
It's mapped with one table per subclass using joined tables. For historic reasons I also use a discriminator, so the current situation is as …
10
votes
6answers
220 views
A list of Entity Framework providers for various databases
Which providers are there and your experience using them
I would like to know about all possible native .net Framework Entity Framework providers that are out there as well as their limitations …
0
votes
2answers
13 views
How to generate Doctrine models/classes that extend a custom record class
When I use Doctrine to generate classes from Yaml/db each Base class (which includes the table definition) extends the Doctrine_Record class.
Since my app uses a master and (multiple) slave db …
2
votes
1answer
29 views
Whats the difference between JPA and JDO specifications?
I have been using Hibernate ORM, which is an implementation of the JPA specification to manage relational data. I have also heard of the JDO specification that supposed to do the same (manage …
1
vote
3answers
67 views
many-to-many relationship in doctrine
I've got some tables on my system like these:
news
--id
--title
--content
video
--id
--title
--url
album
--id
--title
Now, I need to do a many-to-many relatioship with this tables, but in a …
1
vote
1answer
39 views
Which ORM tools support this version of Queryable.Select extension method
Do you know an ORM supporting this extension method:
public static IQueryable<TResult> Select<TSource, TResult>(
this IQueryable<TSource> source,
Expression<Func<TSource, …
2
votes
2answers
109 views
ORM & Logical Delete
Do any of the available ORMs support using a bit field to represent row removal?
More information. Working in C#. I need to delete this way to support synchronization of remote database changes to …
1
vote
6answers
248 views
What ORM would you recommend?
Here's my reqiurements:
Supports C#
Supports Oracle
Supports LINQ
Has ability to map business objects to database tables (not necessarily a 1-to-1 mapping)
I know an Oracle Entity Framework …
0
votes
1answer
15 views
Efficiency of Manual Record Hydration (Doctrine / MySQL)
I'm interested in knowing whether it's more efficient to manually hydrate records when I have already retrieved a record or to have Doctrine hydrate the records.
Here's the simplified scenario:
I …
4
votes
6answers
103 views
Which ORM Supports Multiple row Updates and Deletes
I have a query that deletes all rows that have been marked for deletion. There is a column in a table that is named IsDeleted. It is a boolean data type if it is true the row is suppose to be deleted …
0
votes
2answers
24 views
ORM for GSQL, LINQ 2 GSQL ?
is there LINQ 2 GSQL implementation ?
Note : GSQL is the query language (SQL subset) used in Google AppEngine datastore
2
votes
7answers
78 views
A recommended ORM tool for asp.net or help with SubSonic3 simple repository
Hi,
I'm wanting to use an ORM tool for an asp.net web app I'm working on. I've put together all my classes and just want to have the data persisted. I downloaded SubSonic 3.0 and began using the …
1
vote
6answers
429 views
Which .NET Object Relational Mapper is fastest?
I want to use an Object Relational Mapper (ORM) tool for my ASP.NET application. I have three options: NHibernate, LINQ to SQL, and Subsonic. Which one is fastest?
