Object-relational mapping (ORM) is a technique for mapping between object-oriented systems and relational databases.
0
votes
0answers
12 views
Extending an Entity Framework model via inheritance
I have an EF model that supports some basic functions that I'd like to reuse in several different applications:
[Core.dll]
CoreModel
- Users
- Clients
I'd like to take this model, and extend it ...
1
vote
1answer
41 views
Join in Django?
I'm trying to make an application in Django, but I need to do a JOIN in Django, Somethin like that:
SELECT User.name, Post.contain from User, Post where Post.User_id = User.id;
Hoy can i get the ...
-2
votes
1answer
60 views
Select only latest results for every unique foreign key [closed]
class Price(models.Model):
product = models.ForeignKey(Product)
date = models.DateField()
amount = DecimalField()
Have model where stored amounts for many products on many date(date may ...
0
votes
2answers
29 views
Embed product-variance logic into Django models
I wonder how I would model my Products model to auto-create (and that the admin-App would also understand it) variants of a Product based on it's variant-parts.
My Products have;
Colors
Sizes
and ...
0
votes
1answer
31 views
Django ORM and dependencies
I am currently brainstorming about building an existing PHP CodeIgniter project in Django.
I spit through the documentation a bit already and done some online tutorials to test how it works and am ...
-1
votes
0answers
35 views
I need a java framework with object-relational mapping support for postgres data base [closed]
I was using Hibernate but i got problems at the moment of generate the mapping classes. So I'm looking for other choices
0
votes
0answers
9 views
filter on prefetch entity using persistence js
I'm new to persistence js and I'm not sure if its possible to apply filter on a prefetch entity. I was using websql as store.
Below is the example that I was trying,
var Category = ...
0
votes
1answer
29 views
Ebean ManyToOne Mapping CRUD
I have two Entities Transaction and Category with ManyToOne mapping. So many transaction can fall into have category.
@Entity
class Transaction extends Model{
@Id
public Long id;
...
0
votes
1answer
23 views
Filter django objects based number of foreign references
I have an object that represents a list of items. Each item has a foreign key to this list.
class ItemList(Model):
pass
class Item(Model):
list = ForeignKey(ItemList, related_name="items")
...
1
vote
1answer
29 views
How to define my own mapping between java to database Object
Is these some Way to define my own mapping of hibernate to database Object??
For example, by default String maps to varchar(45), I want to change it to TEXT or just varchar(245) , what are the ways of ...
0
votes
1answer
32 views
Adding properties to object at runtime, and saving to a database
I have a set of model class definitions, each with some properties and methods.
Each new model class definition is mapped to its own database table, the properties forming the table columns. Each ...
1
vote
1answer
39 views
Django mysql table name did not validate
I added classes to Django app model to create mysql tables. I have 'downloads' table, and 'downloads' column in 'songs' table.
When i want to sync db, Django returns me error:
CommandError: One or ...
0
votes
0answers
10 views
Entity manager for appcelerator mobile
I know that joli library is a ORM for appcelerator but I want to know that is there any entity manager for appcelerator mobile?
0
votes
0answers
24 views
Paginator with “$fetchJoinCollection = true” won't respect “ORDER BY” in doctrine DQL?
Having a strange issue. We are using MariaDB 5.5 and doctrine/orm 2.3.3, and trying to use the Doctrine Paginator with DQL.
http://docs.doctrine-project.org/en/latest/tutorials/pagination.html
The ...
0
votes
0answers
17 views
FlushAction and Lazy attribute
I have a Solution 'MySolution' in VS. In one project 'Domain' I have defined de following classes:
public class CarBase
{
public virtual void Foo();
}
public class Car : CarBase
{
...
0
votes
1answer
28 views
Enthought Traits with SQLAlchemy
The question is obvious: is it possible to use both ets Traits and SQLAlchemy for the same class? If no, what an alternative approach could you suggest?
2
votes
2answers
43 views
Does Dapper support Enums?
I have a class User where Role is enum with values: Employee, Admin etc... Dapper throws an exception: "The member Role of type System.Enum cannot be used as a parameter value"
Does dapper support ...
0
votes
0answers
41 views
Get latest values in GROUP BY using Laravel Eloquent ORM
I'm trying to understand how Laravel's Eloquent ORM works and was looking at the following MySQL query:
SELECT id, name, date FROM tablename GROUP BY name ORDER BY date
The use of GROUP BY always ...
0
votes
0answers
39 views
Oracle ORDImage and EclipseLink || Hibernate
I'm trying to create ORM with EclipseLink in my Java EE + OracleDB application. The problem is that I don't know how to map ORDImage type from database. I tried to use @Struct but without a success.
...
-1
votes
1answer
10 views
Libraries in hibernate 4.x
I am studing a book about Hibernate. The book is about Hibernate 3 but I would like to use hibernate 4.x.
There are some libraries in Hibernate 3 that I can't find in Hibernate 4 (for example ...
0
votes
0answers
46 views
Ruby DataMapper: Conditions through associations
I have a class Expression which belongs to a Language and which have a many-to-many relationship with a Concept. So, an Expression belongs to a Language and a Expression can have many Concept, and at ...
0
votes
0answers
29 views
Undefined index: joinColumns in symfony2
I have this Many-To-Many relationship in my symfony2 orm. If I export it from the database itself then it makes the entity Tag the owning side and Server the inverse side. I want to change this but ...
0
votes
3answers
71 views
Laravel ORM Model Hierarchy?
I want to create a One-to-Many relationship for one model.
Exactly I want to build a hierarchy of categories.
For that I have a migrationscript that creates a foreign key / column category_id.
In the ...
2
votes
1answer
26 views
Average over a relationship in django
I have two entities, namely Project and Issue defined as followed:
class Project(models.Model):
class Issue(models.Model):
project = models.ForeignKey(Project, related_name='issues')
...
0
votes
0answers
11 views
Entity Framework and LINQ: Is there anyway to auto reflect the renamed entity in LINQ query
I was trying to change the table names in the entity model or database but the old names are already use in many places in the application. Is there any way to auto reflect renamed entities or tables ...
-1
votes
0answers
43 views
what are the advantages of working with object based Model data? [closed]
I mean Model in the MVC sense.
I've read lots of times that frameworks that return data as object are more powerful than those that return data as array... can you give some examples of how this is ...
0
votes
0answers
33 views
Django accessing related fields prefetched by prefetch_related
So I have this loop:
for t in ts.prefetch_related('u__v_set'):
bla = t.x
...
Running this code in debugsqlshell I see three (constant amount in general) sql statements:
one getting all ...
0
votes
1answer
14 views
Fulltext search with Simple.Data
I am trying out Simple.Data ORM. Is there a way take advantage of sql server's full text search with Simple.Data ORM? I found methods to use the wild card search but did not see anything for full text ...
2
votes
1answer
55 views
Java ORM framework that supports i18n out of the box?
Is there a java orm framework, or an extension to one, that supports i18n out of the box?
I found jpa-translator which pretty much looks to be exactly what I am looking for, but it has not been ...
1
vote
1answer
57 views
What is a good style around the use of getters/setters , properties while designing python classes
I came across this python code base where there is a custom ORM code that maps to MongoDb. I was asked to write new Entities following the existing pattern of code. I have only been writing python ...
1
vote
3answers
58 views
Model::query() doesn't return Model-name in results
When I execute some query with a $this->query, CakePHP return this:
Model:
<?php
App::uses('AppModel', 'Model');
class Authorization extends AppModel {
public $displayField = 'name';
...
1
vote
1answer
36 views
How To Use A Single Form To Collect Data For The Related Models it's not two or more alone models, it's a few related models
First
there has a Tutorials : http://www.yiiframework.com/wiki/19/how-to-use-a-single-form-to-collect-data-for-two-or-more-models/
But,
How to use a few related models to create a related form?
I ...
1
vote
1answer
19 views
What are the effects of using object relational mapping on software performance?
what are the effects of using object relational mapping on software performance?
Does ORM increase performance or decrease it?
and Does it differ in various software projects?
1
vote
2answers
58 views
PetaPoco map comma separated string to a List of string
In the database, I've got a column that contains comma seperated values, like so:
Foo.Bars varchar(100): @;1,5
In the code, the DTO contains a List<string>, like so:
public class Foo { ...
0
votes
1answer
24 views
update tables with computed columns in sqlalchemy
I'm working in a legacy MSSQL database using SQLalchemy, for which I have a declarative mapping.
This database has several tables that have computed columns. I can read them fine, but (of course) ...
0
votes
1answer
30 views
What is the proper way to model this type of inheritance with SQLAlchemy?
I have a pair of PostgreSQL tables that look somewhat like this (simplified example):
CREATE TABLE people (
id SERIAL PRIMARY KEY,
created timestamp with time zone DEFAULT now() NOT NULL,
...
0
votes
3answers
56 views
Kohana 3.3 ORM - how to find all ancestors in a tree (self-referencing table)
How to find all the ancestors (not only direct parent) of a record with the following model:
class Model_Category extends ORM {
protected $_belongs_to = array(
'parent' => array('model' ...
0
votes
1answer
22 views
ORM relationships (possibly Kohana specific)
I have a couple of models, one is a notification and one is a severity. Notifications have a severity.
My Notifications table in my database (simplified) is as follows
id => int
message => ...
0
votes
0answers
33 views
When UserType represents Set of Objects in single line. How to query Hibernate custom UserType with like criteria?
We are using custom Hibernate UserType to store a Set of Strings in a single line.
When trying to Query this set with like criteria, using JPA CriteriaBuilder Hibernate throws ...
0
votes
1answer
59 views
Customized django manage.py use case
I am actually using django only to use its Object relational mapper(ORM) feature and, currently, have nothing to do with its web-framework. At present I have successfully been able to customize ...
1
vote
0answers
31 views
Is “flush” of session must called in this case?
i defined a "booking" entity a "part" entity ,their relationship is one to many.now in my case i had a such operation
Step 1:retrieve one booking by FK,assume under this booking,it has three ...
0
votes
0answers
42 views
Not working orphanRemoval (OneToMany) in Doctrine Sonata
Not working orphanRemoval (OneToMany) in Doctrine (I try 2.2 and 2.3). The element from target entity trying to deleted but still available. I get not any error, just not deleted.
Configuration ...
0
votes
0answers
21 views
Can I associate a join table with another table?
I am creating an online rental store using the following:
JSF 2.1
Hibernate 4.2
Spring 3.2
MySQL 5.5
Below is my database schema design:
Link in case image not displayed.
The rental user has ...
0
votes
1answer
124 views
DoctrineORMModule zend framework 2.1.5 - exception(Model\Entity is not a valid entity or mapped super class)
I know exactly same type of issue has been posted here many times. But not a single one solved my problem, really frustrated ,googling for more than 2 days finding solutions still with no success. I ...
2
votes
1answer
38 views
Mapping and DQL
I have 3 tables - user, area, and contacts. A contact can belong to a user or an area. A user can belong to many areas.
I want to pull all the contacts that belong to a user (as specifically defined ...
0
votes
0answers
14 views
Rails: hook_for :orm not finding active_record
I'm writing a custom generator. For the most part, the generator is able to use hooks successfully. For instance,
hook_for :resource_route, in: :rails, required: true
Invokes resource_route as ...
0
votes
0answers
30 views
kohana 3 orm relevance sorting
I realized, only good way to solve relevance solving is to do it like this.... lets say we have:
table : "user" with columns: (userid, name, birth, number, securityid)
I am searching for people ...
0
votes
0answers
19 views
SQL-Like Set Operations On Sets Of Arbitrary Classes (Including Joining to JPA @Entity's)
I'm importing 3 CSV spreadsheets for use in a java app. Each row is marshaled into a class that has a property for each field + some behavior. I want to be able to easily do SQL-like set operations ...
1
vote
1answer
20 views
How to know if using an ORM will not lead to poor performance?
I plan to create a small online DD3 like game manager:
Download Client and play peer to peer with friends
online with everybody
or simply create your characters sheet with it for home game.
...
0
votes
0answers
34 views
sequelize.js custom validator, check for unique username / password
Imagine I have defined the following custom validator function:
isUnique: function () { // This works as expected
throw new Error({error:[{message:'Email address already in use!'}]});
}
However, ...







