Lets assume that i have an AR model Foo
Foo.find methods will return all entries from the foo table based on the criteria.. What i need is to have some kind of default criteria like country column so that if i define this somehow in AR, all my Foo.find methods will return entries only from that country...
How can i tell AR to use such default behaviour or set it dynamically?
Well, I think you are talking about overriding the find functionality, which is probably not that safe, but do-able. You'll run into issues with supporting the different find formats as well. For example, how will you handle Foo.find(1) and Foo.find([1,2,3])? To do this in a safe way you should really use scopes. For example, in Rails 3 you would do the following:
You could then use this scope anytime you make a call to query Foo. For example:
If you wanted to simplify this code further because you used it a lot, you could create a function on Foo to deal with this as well:
So that you could make find calls like this:
By using this method you avoid having to override default ActiveRecord functionality, so your code is easier for other developers to understand and you don't have to worry about supporting a bunch of different method formats and calls.
If you do want this to be your default behavior, you can use the ActiveRecord default_scope like this:
This will be applied when creating a record, but not when updating a record.