10
votes
6answers
221 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
14 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 …
5
votes
11answers
371 views
Why are people continuing to use xml mapping files instead of annotations?
I've observed the strange fact (based on the questions in the hibernate tag) that people are still actively using xml files instead of annotations to specify their ORM (Hibernate/JPA) mappings.
There …
5
votes
8answers
214 views
Which ORM Supports this
I have an optional part of query that needs to be executed on a certain condition. Here is the example code:
int cat = 1;
int UserID = 12;
string qry = "select * from articles";
if(cat > 0)
…
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 …
2
votes
7answers
81 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
1answer
42 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, …
1
vote
3answers
68 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
2answers
50 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 = …
2
votes
0answers
91 views
Really complex LINQ (to SQL) query example
We're thinking about adding more LINQ tests for ORMBattle.NET, but have no more ideas. All LINQ tests there are checking common LINQ functionality:
Any test must pass on LINQ to IEnumerable
For any …
0
votes
4answers
72 views
Create class from database [closed]
There's a product out there that looks like a great product, the demo video showed how to create a class that will then generate your database from it. What I'm looking for is the opposite. I already …
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
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 …
3
votes
7answers
80 views
Entity names vs table names
We are going to develop a new system over a legacy database(using .NET C#).There are approximately 500 tables. We have choosen to use an ORM tool for our data access layer. The problem is with namig …
