Part of the MVC pattern, the Model manages the behavior and data of the application.
128
votes
5answers
16k views
How should a model be structured in MVC?
I am just getting a grasp on the MVC framework and often I wonder how much code should go in the model. I trend of have a data access class that has methods like this:
public function ...
97
votes
11answers
17k views
Doctrine2: Best way to handle many-to-many with extra columns in reference table
I'm wondering what's the best, the cleanest and the most simply way to work with many-to-many relations in Doctrine2.
Let's assume that we've got an album like Master of Puppets by Metallica with ...
54
votes
13answers
16k views
Is there a way to get a collection of all the Models in your Rails app?
Is there a way that you can get a collection of all of the Models in your Rails app?
Basically, can I do the likes of: -
Models.each do |model|
puts model.class.name
end
Thanks in advance.
7
votes
2answers
10k views
Real example of TryUpdateModel, ASP .NET MVC 3
I can't understand, how to use TryUpdateModel and save the MVC architecture at the same time.
If I am not mistaken, work with datacontexts must be in the Model. So, such code
var db=new ...
39
votes
4answers
7k views
Fat models, skinny controllers and the MVC design pattern
I just read a blog post that explains MVC with a banking analogy. I have a few months of experience with web application development with an MVC framework (CakePHP), so I get the basics, but I began ...
59
votes
1answer
39k views
Django set default form values
I have a Model as follows
class TankJournal(models.Model):
user = models.ForeignKey(User)
tank = models.ForeignKey(TankProfile)
ts = models.IntegerField(max_length=15)
title = ...
83
votes
2answers
29k views
Rails find_or_create by more than one attribute?
There is a handy dynamic attribute in active-record called find_or_create_by:
Model.find_or_create_by_<attribute>(:<attribute> => "")
But what if I need to find_or_create by more than ...
23
votes
5answers
9k views
Rails Model has_many with multiple foreign_keys
Relatively new to rails and trying to model a very simple family "tree" with a single Person model that has a name, gender, father_id and mother_id (2 parents). Below is basically what I want to do, ...
12
votes
3answers
7k views
Why Two Classes, View Model and Domain Model?
I know it could be bad to use domain models as view models. If my domain model has a property named IsAdmin and I have a Create controller action to create users, someone could alter my form and get ...
2
votes
4answers
846 views
How to change the sequence of 'joins' in CakePHP?
I have the problem with the sequence of joins. The similar problem was in another question http://stackoverflow.com/questions/3343348/manipulating-order-of-joins-in-cakephp. The answer was to use ...
3
votes
2answers
8k views
How to find iPhone/iPod Device model(3G,3GS,4,4S) by code? [duplicate]
Possible Duplicate:
Determine device (iPhone, iPod Touch) with iPhone SDK
I have tried to get the current device model name like 3G,3GS,4,4S,iPodTouch(Different Generations). But, i cant ...
5
votes
1answer
5k views
Model binding with nested child models and PartialViews in ASP.NET MVC
I have the following types and classes:
{
namespace MVC.Models
public class Page
{
public EditableContent Content {get; set; }
}
public class EditableContent
...
17
votes
5answers
10k views
Modeling objects with multiple table relationships in Zend Framework
I'm toying with Zend Framework and trying to use the "QuickStart" guide against a website I'm making just to see how the process would work. Forgive me if this answer is obvious, hopefully someone ...
12
votes
4answers
10k views
Rails has_many with dynamic conditions
What I want is to create a Model that connects with another using a has_many association in a dynamic way, without the foreign key like this:
has_many :faixas_aliquotas, :class_name => ...
7
votes
5answers
11k views
Ruby on Rails - Access controller variable from model
I am trying to access an instance variable which is set in the controller in the model. The controller is the products controller and the model is the products model. The instance variable is a ...
8
votes
2answers
6k views
attribute dependent on another field
In a model of my ASP.NET MVC application I would like validate a textbox as required only if a specific checkbox is checked.
Something like
public bool retired {get, set};
...
8
votes
4answers
3k views
Rails: Skinny Controller vs. Fat Model, or should I make my Controller Anorexic?
I know similar questions have been answered before - such as: Where should logic go, where to do certain tasks, etc. But I have a more specific question - How far should I take this axiom: "keep your ...
30
votes
12answers
34k views
Models in the Zend Framework
What are some of the ways you have implemented models in the Zend Framework?
I have seen the basic class User extends Zend_Db_Table_Abstract and then putting calls to that in your controllers:
$foo ...
51
votes
2answers
22k views
Rails :dependent => :destroy VS :dependent => :delete_all
In rails guides it's described like this:
Objects will be in addition destroyed if they’re associated with :dependent => :destroy, and deleted if they’re associated with :dependent => ...
53
votes
2answers
19k views
Default sort order for a rails model?
I would like to specify a default sort order in my model.
So that when I do a find(:all, ...) (or a find(:where, ...) that returns multiple rows) without using an :order parameter it defaults to ...
15
votes
2answers
12k views
Smarter paperclip validations
I'm using paperclip in a rails app and have the following three validations in my model
validates_attachment_presence :photo
validates_attachment_size :photo, ...
6
votes
4answers
4k views
Properly calling the database from Model in an MVC application?
I'm building a tiny MVC framework for learning/experimenting and small project purposes. I needed to find out the basics of the internals of the Model since a full MVC framework and ORM is overkill ...
3
votes
3answers
5k views
ios iphone get device model and make?
I was wondering if it's possible to determine what kind of iPhone (for example) the currentdevice is? I know it's possible to get the model through
NSString *deviceType = [[UIDevice currentDevice] ...
8
votes
3answers
1k views
model user's message in rails 3
I have built the following model to handle user's message exchange:
create_table "messages", :force => true do |t|
t.integer "source_id"
t.integer "destination_id"
t.string ...
6
votes
4answers
3k views
Paginate from within a model in CakePHP
I have a function in my Event model called getEvents - you can pass limit, start and end dates, fields, event types, and event subtypes.
I read that paginate can accept all the parameters I'm using ...
16
votes
4answers
7k views
ASP.NET MVC Model vs ViewModel
OK, I have been hearing discussion about "ViewModels" in regards to MS's ASP.NET MVC.
Now, that is intended to be a specific kind of Model, correct? Not a specific kind of View.
To my ...
4
votes
2answers
1k views
ASP.NET MVC Model Binder with Global Number Formats
The default model binder is returning errors for properties that are of type double when my application is being used in countries that use different number formatting for decimals (e.g. 1.2 = 1,2). ...
6
votes
2answers
2k views
Bestpractice - Mixing View Model with Domain Model
Is it reasonable to mix view models with domain models?
So i.e. the view model object contains some domain model objects (not the other way around!)
1
vote
1answer
501 views
MVC Partial Model Updates
I often find myself in the situation where I only want to present and edit some fields from my model. Let's say I have a model that represts an address, perhaps I just want the form to update the city ...
0
votes
1answer
983 views
Magento custom “order” attribute / admin input and display
I need to add a custom attribute to the order model ("dynamics_ord").
This attr needs to be defined by admin staff, after the order has been successfully saved, ideally on the ...
62
votes
3answers
10k views
Easiest way to rename a model using Django/South?
I've been hunting for an answer to this on South's site, google, and SO, but couldn't find a simple way to do this.
I want to rename a Django model using South.
Say you have the following:
class ...
31
votes
4answers
24k views
Kohana 3: Example of model with validation
I find examples and tutorials about models and about validation. And I places that say the validation (or most of it at least) should be in the model, which I agree with. But I can't any examples or ...
17
votes
5answers
13k views
Django required field in model form
I have a form where a couple of fields are coming out as required when I don't want them too. Here is the form from models.py
class CircuitForm(ModelForm):
class Meta:
model = Circuit
...
28
votes
7answers
4k views
MVC: Data Models and View Models
I've read some MVC advice in the past regarding models stating that you should not reuse the same model objects for the domain and the view; but I haven't been able to find anyone willing to discuss ...
9
votes
6answers
8k views
Model limit_choices_to={'user': user}
I went to all the documentation, also I went to the IRC channel (BTW a great community) and they told me that is not possible to create a model and limit choices in a field where the 'current user' is ...
10
votes
4answers
10k views
Rails form validation conditional bypass
I have a rails model that validates uniqueness of 2 form values. If these 2 values aren't unique the validation errors are shows and the "submit" button is changed to "resubmit". I want to allow a ...
14
votes
4answers
16k views
Using helpers in model: how do I include helper dependencies?
I'm writing a model that handles user input from a text area. Following the advice from http://blog.caboo.se/articles/2008/8/25/sanitize-your-users-html-input, I'm cleaning up the input in the model ...
11
votes
8answers
22k views
6
votes
5answers
4k views
Rails gem rails3-jquery-autocomplete: How do I query multiple fields
I'm using the rails3-jquery-autocomplete gem found here: http://github.com/crowdint/rails3-jquery-autocomplete
The instructions are clear for how to query a single attribute of a model and I am able ...
5
votes
1answer
4k views
Entity Framework Code First List<string> Property Mapping
I am working with Entity Framework Code first. I have a simple model:
public class Variable
{
public string Name { get; set; }
public int Id { get; set; }
public IList<string> ...
4
votes
5answers
6k views
How would I use ON DUPLICATE KEY UPDATE in my CodeIgniter model?
I have a CodeIgniter/PHP Model and I want to insert some data into the database.
However, I have this set in my 'raw' SQL query:
ON DUPLICATE KEY UPDATE duplicate=duplicate+1
I am using ...
3
votes
1answer
4k views
How do I use Html.EditorFor to render radio buttons in MVC3?
Here's my model:
[Required]
[Display(Name = "I'm a:")]
public bool Sex { get; set; }
And my editor template:
<div>
@Html.LabelFor(model => model.RegisterModel.Sex)
...
1
vote
1answer
641 views
How can I determine whether my iOS device has a torch light?
In my application I have the option for a torch light. Howevver, only iPhone 4 and iPhone 4S have torch lights. Other devices do not have the torch light. How can I find the current device model? ...
1
vote
3answers
238 views
ATK4 model not found when moving to online
I am developing a website using ATK4, a php framework with jquery.
I have developed this on my laptop using localhost/test1 as the directory and with a local php database.
If i move all the ...
1
vote
1answer
1k views
Custom model attribute (column name) title in Ruby on Rails
Can I add custom model attribute titles, so forms could automatically render them instead of "prettied" column name?
For example I apply some method in my model, which defines attribute title:
...
15
votes
6answers
15k views
Magento - Passing data between a controller and a block
Really quick and simple question but I can't find a decent answer to this - What is the best way to pass data from a controller to a block in Magento.
Incase it makes a difference, I am loading the ...
11
votes
3answers
3k views
Writing a multi-tenant Rails 3 app for deployment on Heroku
I'm building a Rails 3 app for deployment on Heroku, and I'm wondering if there are any recommendations on how to handle multi-tenancy in my models. Half a year ago, there was a related question ...
20
votes
1answer
32k views
Model Containing List of Models (MVC-3, Razor)
This problem has been plaguing me for two days now. There are some similar posts, but none that address my problem completely.
Using MVC-3, Razor syntax:
-- EDIT.cshtml --
@using ...
6
votes
2answers
3k views
Ruby On Rails User Model for multiple types
I am learning RoR coming from many years of c# and MSSQL.
I have picked a project to build a web site for my brother who is a rental property manager. I figured this should be fairly easy as the ...
21
votes
7answers
6k views
DTO or Domain Model Object in the View Layer?
I know this is probably an age-old question, but what is the better practice? Using a domain model object throughout all layers of your application, and even binding values directly to them on the ...
