0
votes
1answer
19 views
DataMapper has n through Resource DELETE (Remove from association) not working
Hi,
I'm have this two classes
class User
include DataMapper::Resource
property :id, Serial
property :name, String
has n :posts, :through => Resource
end
class Post
include …
0
votes
1answer
16 views
DataMapper has n with conditions
Hello,
By any chance is it possible to create a conditional association with DataMapper?
For example:
I want the User have n Apps just if that user have the attribute :developer => true
something …
0
votes
1answer
41 views
Ruby & Datamapper checking if a record exists, and where?
I have a basic Ruby app that I am building with Sinatra, Datamapper and has user authentication using OAuth. When I receive the data back from the Oauth service, I save a record of a new user in an …
0
votes
2answers
98 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 about Ruby to accomplish …
0
votes
1answer
47 views
How can I randomize DataMapper collection and convert it to JSON?
Hi,
I'm pulling my hair out trying to build a little random photo JSON feed using DataMapper/Sinatra. Here's what I have so far..
Photo.favorites.to_json(:methods => [:foo, :bar])
So that works …
0
votes
1answer
37 views
undefined method merge
merb datamapper seems to be broken.
$ merb
Loading init file from /home/kristian/workspace/ruby/nightly/config/init.rb
Loading /home/kristian/workspace/ruby/nightly/config/environments/development.rb
…
0
votes
5answers
88 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 like …
0
votes
2answers
81 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(STDOUT, :debug)
in …
1
vote
2answers
60 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
belongs_to :post
…
0
votes
1answer
75 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
181 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 what is the best …
0
votes
0answers
13 views
How do I set a Data Mapper object to be accessed in view with Ocular in CodeIgniter?
Previously using Ocular 0.25 I was able to set an object as a view data, that I could access in the view: like:
$b= new book(); $b->get_where("id",5);
$this->ocular->set_view_data("b", $b);
…
0
votes
1answer
77 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 DataMapper.resource
…
0
votes
3answers
135 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 absence of one , can …
2
votes
3answers
227 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 < ActiveRecord::Base
Does …
