0
votes
5answers
47 views
Chained aggregate call across association in DataMapper (ruby)
I am working on a simple budget app using Sinatra and DataMapper in Ruby.
I want to get the sum of all transactions across all income accounts within the last 30 days.
Something …
0
votes
2answers
50 views
Using Rack::Session::Datamapper
mkristgan's rack_datamapper gem says that it "can be wrapped to be used in a specific environement, i.e. Rack::Session::Datamapper".
Unfortunately, I don't know quite enough abou …
0
votes
2answers
32 views
Automatic logging of DataMapper queries
I am working on a simple app in Sinatra with DataMapper. I want to see the queries that DM is created for my various chained finders, etc.
I have tried:
DataMapper::Logger.new(S …
1
vote
2answers
41 views
Want to sort by association records count in Datamapper
Lets say I have the following DataMapper resources:
class Post
include DataMapper::Resource
has n, :comments
...
end
class Comment
include DataMapper::Resource
b …
0
votes
1answer
41 views
App Engine Jruby DataMapper List Property
Hi! How to use list/array as property in DataMapper on Jruby on Google AppEngine?
1
vote
3answers
143 views
What is the best MVC, Doctrine2, Datamapper practice?
I am looking into using Doctrine2 with my Zend Framework setup. I really like the datamapper pattern, mainly because it seperates my domain models with my database.
My question is …
0
votes
3answers
124 views
Tools for mapping bussiness objects(DTO objects) from entities in asp.net mvc?
is there any tool or utility(mapper assembly) to construct business objects from entities(which are obtained from DB using linq -> sql , entity framework or whatever..)
in the abs …
0
votes
1answer
51 views
datamapper multi-field unique index
In Datamapper, how would one specify the the combination of two fields must be unique. For example categories must have unique names within a domain:
class Category
include Data …
2
votes
3answers
196 views
Why does DataMapper use mixins vs inheritance?
So I'm just curious about this:
DataMapper uses a mixin for its Models
class Post
include DataMapper::Resource
While active-record uses inheritance
class Post < ActiveRec …
0
votes
1answer
57 views
Datamapper DateTime to String behaviour
I write my first project wich using Datamapper as ORM, so please be patient. :)
I try to do get String from DateTime field:
Error.first.submitted_at.to_s
=> "2009-08-24T12:1 …
0
votes
2answers
121 views
error happens when I try “all” method in datamapper
When I try to do this in Sinatra,
class Comment
include DataMapper::Resource
property :id, Serial
property :body, Text
property :created_at, DateTime
…
0
votes
0answers
59 views
how to have identity map in doctine ORM
need to use a good PHP ORM that has elements of Datamapper and i am not clever enough to code it myself.
chosen doctrine, but after reading through the user guide, cannot find an …
0
votes
0answers
43 views
Strategic Eager Loading for many-to-many relations in Datamapper?
I'm using DataMapper, an open source ORM for ruby, and I have in itch I would like to scratch. At the moment, DataMapper can use Strategic Eager Loading(SEL) for one-to-many relat …
0
votes
2answers
173 views
Is there a data mapper like Dozer for c#
I am looking for something similar to Java's Dozer for C#, something that uses reflection to automatically maps the data fields in one object to another.
A link to Dozer: http://d …
0
votes
4answers
139 views
Is there any PHP ORM similar to Ruby`s DataMapper ?
I working mostly with DataMapper in Ruby and Merb, so im looking for PHP ORM that is similar to DataMapper. Any good ones?
