Choosing between Symfony's Doctrine ORM files Model.class.php and ModelTable.class.php

此生再无相见时 提交于 2019-12-13 04:46:38

问题


when doctrine builds model files for a table, it generates three files, essentially BaseModel.class.php, Model.class.php and ModelTable.class.php. Common knowledge requires that any modifications be done to Model.class.php or ModelTable.class.php vs BaseModel.class.php.

But when do you choose between either Model.class.php vs ModelTable.class.php. From what I gather is that Model.class.php is for a single instance and ModelTable.class.php is for multiple instances.

Can anyone shed any light here?


回答1:


it's so simple!

suppose you have a Model Called Article. you will have three classes called BaseArticle.class.php and Article.class.php and ArticleTable.class.php

here is the definition for each class:

BaseArticle.class.php : this class has your model definition(or your table definition). you don't want to edit this class Ever!

Article.class.php : is a place for your override methods that you can write for your models. you only have access to these functions when you have an instance of Article Class. so you can call them only by an object. for example:

class Album extends BaseArticle {

    public function getSummary(){
         ....
    }

}

for using it you should do this:

$article=new Article();
$article->getSummary();

ArticleTable.class.php : and this is where you want to write your functions that are for your whole Article talbe(or it's better to say for your whole Article model). for examlpe you want to find most popular articles, you can't write this function to your Article Class because it works only on an object. but you want to do this on your whole Table. so:

class AlbumTable extends Doctrine_Table {
    public static function getPopularArticles() {
    }
}

and you have to use it like this if your functions are static:

ArticleTable::getPopularArticles();

and if your functions are not static you can call them using:

Doctrine_Core::getTable('Product')->your_nonstatic_function();



回答2:


J0k's answer is informative but doesn't really answer the question in layman's terms. ESP. regarding the single vs. multiple questions.

The difference is not really single vs. multiple instances, but more one of instantiated vs. uninstantiated.

Very Simply:

You use the Table functions when you don't yet have an instance of the object you want to read or manipulate.

You use the Class functions when you already have an instance of the object and you want to save it, update it, or retrieve more information(related objects) about it.

Often Table functions are accessed from Class functions

More Complexly:

Often, with good design, you will need to create methods in both the regular Class methods and the Table methods.

Say you have a Customer with a one to many relationship to Purchases (which has a one to many relationship to Products)

Say you want to write a method or getting all of a Customer's Products.

in Customer.class.php you create a:

public function getProducts(){}

you create this in the regular class, because you'll only be interested in a what products a customer has once you have your customer

this might call something like:

Doctrine_Core::getTable('Product')->getByCustomerId($this->get('id')

Here, you may not have any Product instances yet, but you want to retrieve them, so this should go in the Table class.

The reason why this doesn't simply break down into Single vs. Multiple is: if you were to make a function that refunds all Products belonging to a Customer. You might be dealing with Multiple Products, but you wouldn't want to create your functionality just in the table. You may need to make an API call to your payment processor, you may need to check the refund period on each products, ETC.

Instead, you create Table Functions to retrieve the right data, and then manipulate that data by creating Class Functions.

Note that I see good programmers get this 'wrong' all the time. This often comes down to a matter of individual style.




回答3:


You will find a very well answer in the official documentation, at Model Classes.

Basically, about Model.class.php:

Model is object classe that represent a record in the database. They give access to the columns of a record and to related records. This means that you will be able to know the title of an model by calling a method of an Model object.

For ModelTable.class.php:

ModelTable are table classe; that is, classe that contain public methods to operate on the tables. They provide a way to retrieve records from the tables. Their methods usually return an object or a collection of objects of the related object class

And BaseModel.class.php:

The Base classes kept in the lib/model/doctrine/base/ directory are the ones directly generated from the schema. You should never modify them, since every new build of the model will completely erase these files.



来源:https://stackoverflow.com/questions/11714387/choosing-between-symfonys-doctrine-orm-files-model-class-php-and-modeltable-cla

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!