Tagged Questions
The models tag has no wiki summary.
19
votes
3answers
1k views
models.py getting huge, what is the best way to break it up?
Directions from my supervisor:
"I want to avoid putting any logic in the models.py. From here on out, let's use that as only classes for accessing the database, and keep all logic in external classes ...
11
votes
4answers
3k views
Overriding default_scope in Rails
In my Post.rb model, I have default_scope :conditions => {:deleted => 'false'}
But if I try to run Post.find(:all, :conditions => "deleted='false'"), it won't return anything. It's as if ...
8
votes
2answers
326 views
Reusing a Model Built in R
When building a model in R, how do you save the model specifications such that you can reuse it on new data? Let's say I build a logistic regression on historical data but won't have new observations ...
8
votes
1answer
2k views
Cascade delete in Ruby ActiveRecord models?
I was following the screencast on rubyonrails.org (creating the blog).
I have following models:
comment.rb
class Comment < ActiveRecord::Base
belongs_to :post
validates_presence_of :body ...
8
votes
3answers
431 views
Creating Models in ASP.NET MVC
I'm just starting a project in ASP.Net MVC with LINQ to Entities and I was wondering if there was a nice, clean way of defining models that creates the appropriate tables in the database for me. I'm ...
8
votes
8answers
923 views
Freely available 3D graphics resources
I'm primarily a programmer and always have the same issue when starting new projects: I have no artistic bone in my body. But you can't always afford an artist.
What resources can I use for ...
7
votes
1answer
354 views
Shared models between two Rails apps - what is the ideal solution for Workflow?
I am currently working on a Rails 3 project that is divided up into four parts:
The public facing website
The administration website/backend
The models
The API for third party data access
As the ...
7
votes
3answers
5k views
CakePhp - save() returning false, but with no error
My debug value is set to 2, and it's displaying all the queries,
except the one I need.
I have an Items Controller method that is calling this User Model
(Item belongsTo User):
function ...
7
votes
3answers
736 views
ListProperty of keys vs Many-to-Many in App Engine
As a hypothetical example, I have a model TodoItem and a model TodoList. An TodoList has an ordered list of TodoItems, and any one TodoItem can belong to any number of TodoLists (Many-to-Many). No ...
6
votes
3answers
1k views
Rails: how to require at least one field not to be blank
I know I can require a field by adding validates_presence_of :field to the model. However, how do I require at least one field to be mandatory, while not requiring any particular field?
thanks in ...
6
votes
2answers
267 views
x86 and Memory Addressing
I've been reading up on memory models in an assembly book I picked up and I have a question or two. Let's say that the address bus has 32 lines, the data bus has 32 lines and the CPU is 32-bit (for ...
6
votes
1answer
4k views
Rails has_one :through association
Rails has a has_one :through association that helps set up a one-to-one association with a third model by going through a second model. What is the real use of that besides making a shortcut ...
6
votes
2answers
2k views
Could not find the association problem in Rails
I am fairly new to Ruby on Rails, and I clearly have an active record association problem, but I can't solve it on my own.
Given the three model classes with their associations:
# ...
5
votes
2answers
83 views
Looping over a list of objects within a Django template
Can't seem to see where I am going wrong here. Forgive me because I am new to this. I am trying to display the 10 newest objects within a model.
Here is the loop I used to put all of these objects ...
5
votes
2answers
489 views
Structuring a many-to-many relationship between models for Rails and Backbone.js
I'm trying to set up an item model and a tag model that have a many-to-many relationship (items have multiple tags and tags belong to multiple items). I'm using Rails and Backbone.js, so I need to ...
5
votes
2answers
172 views
How complex should models be?
When implementing models using the MVC pattern, how complex should my models be?
Let's say I have got a few tables like so:
User (id, password, created ...)
Emails(user_id, email ...)
Addresses ...
5
votes
1answer
133 views
Django inlinemodeladmin validation - but with a generic relation
I previously had models like this:
class AssemblyAnnotation(models.Model):
assembly = models.ForeignKey(Assembly)
type = models.ForeignKey(AssemblyAnnotationType)
...
def clean(self):
...
5
votes
6answers
3k views
Rails: validate presence of parent_id in has_many association
I have a projects resource that has many tasks. I want to ensure that every task has a project_id by adding validates_presence_of :project_id to the tasks model.
However, when creating a new project ...
5
votes
1answer
91 views
Granularization of models?
I'm developing a CMS largely based on Zend Framework components. Some of the database tables for this CMS are as followed:
site
| id | name |
-------------
locale
| languageCode | regionCode |
...
4
votes
2answers
87 views
Model View Controller … and generic classes?
I read some questions related to what I'm going to ask but I couldn't really figure it out.
Let's revision together:
Models are classes that manage datas from and to database. So they are classes ...
4
votes
1answer
97 views
Rails route not working using resource :model
In my Rails 3.1 app, I have a model named "Child"
In my routes.rb file, I have the line:
resources :children
Here is the whole routes.rb text:
root :to => "pages#home"
resources :children
...
4
votes
3answers
61 views
What do you do when you have Rich Models?
I'm working with existing code in a project which has rich models all over the place (instead of POCOs). Basically, is there any good way to mix rich models and ViewModels without repeating code?
...
4
votes
1answer
391 views
How to manage Single Table Inheritance within Doctrine 2?
I have comments & articles, both are "votable".
So, basically I've three entities, Article, Comment and Vote.
After some reading on Single Table Inheritance in Doctrine 2 reference manual, it ...
4
votes
2answers
379 views
Does it make sense to initialize models from the DOM in backbone.js?
backbone.js relies on restful applications to initialize models, but what about progressive enhancement? The data is already in the dom (or some of it), so should my models still make calls the the ...
4
votes
2answers
1k views
Self-referencing models in Rails 3
I have an Entity model and I want to display connections between the Entities. ie, Entity 1 is connected to Entity 2.
My thinking, right now, is to create a join model between the two called ...
4
votes
1answer
599 views
How to use different authentication_keys for two devise models?
Now I have one devise model, which uses email as authentication_key.
I want to add one new devise model, which uses student_id as authentication_key.
Some guide tells me to modify the configuration
...
4
votes
4answers
330 views
how to create a Django models that doesn't map to a database table
I want to create a model that doesn't map to a database table. Instead, stays in memory as a python object.
Actually, this model is supposed to represents normalised data from many other ...
4
votes
5answers
1k views
Creation of dynamic model fields in django
This is a problem concerning django.
I have a model say "Automobiles". This will have some basic fields like "Color","Vehicle Owner Name", "Vehicle Cost".
I want to provide a form where the user can ...
4
votes
3answers
2k views
ASP.NET MVC 2 Model with array/list
Hello i'm in the process of creating my first site in ASP.NET MVC, it is a kind of learn as you go. But i have hit a problem that i just can't find a solution for.
I want my user to be able to create ...
4
votes
1answer
83 views
How to model and track requirements towards a goal in PHP
I'm building a webapp using the Zend Framework, and I need to model logic or keep track of some logic that has to do with tracking progress towards a goal.
Let me illustrate with a sample goal.
...
4
votes
3answers
125 views
Is it bad to use a model directly from a view in codeigniter?
I know normally the data is passed thru to the view with the controller. however, currently in my view I load my model ($this->load->model('Db_model');) so i can use it in a loop to retrieve a users ...
4
votes
3answers
386 views
Trouble with Rails has_many relationships
I'm writing an app where a user can both create their own pages for people to post on, and follow posts on pages that users have created. Here is what my model relationships look like at the ...
4
votes
1answer
2k views
Codeigniter Unit-testing models
I'm new to unit-testing, so this is maybe a little dumb question.
Imagine, we have a simple model method.
public function get_all_users($uid = false, $params = array()){
$users = array();
...
4
votes
2answers
881 views
Whats the best free ER-modelling tool?
whats the best free entity relationship modelling tool?
I have an sql server 2008 database that I want to be modelled out with fields and foreign key contraints and I dont particulary like the one ...
4
votes
6answers
2k views
Why does Code Igniter give me a white page?
Hey, not sure why CodeIgniter is giving me a blank page when I load a simple model. I'm breaking the code down, backwards, and I can't figure out what's breaking. Here's the controller:
class Leads ...
4
votes
8answers
3k views
Multiple models sent to a single view instance
My terminology is probably way off here but basically I'm trying to learn the ropes of ASP.NET MVC and so far so good (largely thanks to Phil Haack and Scott Hanselman's tutorials). One thing which I ...
4
votes
3answers
629 views
How to refactor better model functions in CakePHP?
Hi
I'm reading programming best practices and it is said that when creating a function we should make it do a only single specific task.
I got model functions that retrieves data and it's related ...
4
votes
3answers
4k views
ASP.NET MVC - Multiple models in a form and model binders
I have a form which needs to populate 2 models. Normally I use a ModelBinderAttribute on the forms post action i.e.
[Authorize]
[AcceptVerbs("POST")]
public ActionResult ...
3
votes
1answer
45 views
Django: correct order of these models
I have these models in my app models.py:
class A(models.Model):
#some details
pass
class B(models.Model):
a = models.ForeignKey(A, null=True, blank=True)
c = models.ForeignKey(C, ...
3
votes
1answer
58 views
Ruby on Rails - using :include in Model of different schema
I am working with Ruby on Rails models. I have two models belonging to two different schemas. Two models have parent child relationship. e.g
class Group < ActiveRecord::Base
has_one :customer
...
3
votes
3answers
163 views
Two primary keys specified in MySQL database
I am trying to create a test database that is a replica of a preexisting database. I am using Django models (theoretically the models used with the original database) in order to do this. I recently ...
3
votes
1answer
111 views
How to determine if a table relationship is bidirectional or unidirectional in Doctrine 2?
I am in the process of upgrading from Doctrine 1.1.4 to Doctrine 2.0.6 in my Zend application.
Currently, I am working on mapping the associations between entities. In Doctrine 2's Documentation it ...
3
votes
2answers
312 views
Best way to make one model 'selected' in a Backbone.js collection?
I have a collection of models in my Backbone.js application.
It's a list of items that you can hover over with the mouse or navigate around with the keyboard.
If the mouse is hovering, or if the ...
3
votes
1answer
91 views
Working with Ruby on Rails Models
I am new to ruby on rails and have a (probably simple) question regarding performance and best-practice for Rails 3. I am using a blog engine called enki blog, and I see that the person who wrote ...
3
votes
1answer
131 views
Error loading Model in Codeigniter 1.7.3
Hello and thanks for reading,
I have a problem, I have a controller "Articles" that is supposed to load Model called "Articles", only problem is I get a 500 server error when I try to load that ...
3
votes
3answers
165 views
Ruby on Rails: Properly creating a model instance that has relation to multiple models
Let's say I have a standalone User model and Service model.
I also have a Order model that holds the orders created by an user for a service. I'm wondering how I could properly create an order entry ...
3
votes
2answers
545 views
What can I use Backbone JS's Models for exactly? Is this too far?
I have a question regarding Backbone JS's Models. I've already delved into Backbone JS quite a bit the last few days. I am understanding it now (and thanks to Stackoverflow, I have understood further ...
3
votes
3answers
107 views
Many rails Models with the same flag. What's the best practice?
One of mine rails projects has many models with the same flag: approved.
I don't like to manage the flag 'approved' for so many models, and I am seeking a DRY solution.
I have found some plugin like ...
3
votes
1answer
2k views
ASP .NET MVC - Using a enum as part of the model
(just learning MVC)
I have created a model class:
public class Employee
{
public int ID { get; set; }
[Required(ErrorMessage="TM Number is Required")]
public string ...
3
votes
1answer
151 views
Is it possible to show model help text as a title attribute on forms in Django?
I want to show the model field help_text as an HTML title attribute in a form, instead of it being appended to the end of the line, as is the default.
I like all the information about a model Field ...