0
votes
3answers
25 views
Java static reflection on subclasses
Hi all. I am implementing a sort of ORM in Java. I am trying to do a static find method that is only in the parent class. Let me get to the point:
public class DB {
public stati …
1
vote
2answers
15 views
Testing Data Model in project that uses NHibernate for persistence
I'm still new with NHibernate, so correct me if I'm wrong on any of this.
When you are using NHibernate to build collections of objects from database records, NH takes care of ins …
1
vote
3answers
40 views
NHibernate update reference
Entities
We have an entity called Product which is loaded using NHibernate.
Product has a category which NHibernate happily populates for me.
Database
In the database, Product …
0
votes
2answers
51 views
Django ORM, aggregation?
Not sure how to phrase question, but here goes.
Say i have a table of events, and each event links to a object using a generic foreign key.
I dont want to show two events that li …
1
vote
1answer
22 views
Where are the NHibernate/Hibernate HQL and ICriteria query examples?
I'm still quite new to NHibernate and most of it I'm getting to grips with. One area that I'm really lacking a proper understanding of though is querying (at least when it comes t …
0
votes
2answers
40 views
Select statement with SqlAlchemy
Yes, very basic question.
I've successfully created my db using declarative_base, and can perform inserts into the db too. I just have a few questions about SqlAlchemy sql statemen …
0
votes
5answers
56 views
Choosing data access methods in ASP.NET MVC
As I am a beginner to ASP.NET MVC, I would like to know what are the best data access methods for ASP.NET MVC?
0
votes
2answers
44 views
Is it possible to modify methods of an object instance using reflection
What I'm trying to do is create a domain model with a Plain Old PHP Object.
The I'm creating a library which will do all the infrastructure stuff.
So one of my models looks like th …
0
votes
1answer
16 views
Recommendations for a ERM, DMD and ORM Diagram Creation Application for OSX
I need to produce several ERM, DMD and ORM diagrams for several projects I am working on. Obviously I'd like them to be a sleek and professional as possible, and while a simple Go …
0
votes
1answer
20 views
How to model parent to child pair in MySQL (SQL)
I have a data model that includes element types Stage, Actor, and Form. Logically, Stages can be assigned pairs of ( Form <---> Actor ) which can be duplicated many times (i.e. …
4
votes
3answers
105 views
Should we use the same business classes on server and client?
Imagine you have business domain model on server application and you are going to develop rich client application.
You can use DTO to transfer data to client and changes to serve …
0
votes
4answers
70 views
Are both LINQ and Entity Framework considered ORM?
What is the difference between LINQ and Entity Framework
Are both LINQ and Entity Framework both considered ORM?
What is the advantages of both.
0
votes
7answers
129 views
Which is beneficial for start up; Linq to SQL or Nhibernate?
I want to learn ORM and I wonder which is beneficial for start up; Linq to SQL or Nhibernate. considering time,adaptation... etc
1
vote
3answers
61 views
Is there an ORM framework for Cocoa, or a framework that accomplishes a similar goal using a different technique?
I'm developing an application that needs to store lots of records in an organized way. Specifically, I'm writing a personal finance app. As you can imagine, this app will contain r …
0
votes
5answers
161 views
+250
How best to retrieve and update these objects in NHibernate?
Hi,
I previously asked a question regarding modeling of a situation with Users, Items, and UserRatings. In my example UserRatings are associated with one User and one Item. A go …
