Symfony is an enterprise level PHP MVC framework. In symfony database operations are done using Object Relationship Mapping (ORM) which means we use Classes and Objects rather than direct SQL queries.
The easiest way to understand how Doctrine works in symfony2 is to see it in action using example. In this tutorial, you'll configure your database, create a Product object, persist it to the database and fetch it back out.
QUERYING FOR OBJECTS:
You've already seen how the repository object allows you to run basic queries without any work in the previous post.
EXAMPLE:
$repository->find($id);
$repository->findOneByName('Foo');
i) QUERYING FOR OBJECTS USING DOCTRINE'S QUERY BUILDER:
Imagine that you want to query for products, but only return products that cost more than 11.11, ordered from cheapest to most expensive. You can use Doctrine's QueryBuilder for this:
EXAMPLE:
$repository = $this->getDoctrine()
->getRepository(FancyStoreBundle:Product');
$query = $repository->createQueryBuilder('p')
->where('p.price > :price')
->setParameter('price', '11.11’)
->orderBy('p.price', 'ASC')
->getQuery();
$products = $query->getResult();
ii) QUERYING FOR OBJECTS WITH DQL:
Instead of using the QueryBuilder, you can alternatively write the queries directly using DQL:
EXAMPLE:
$em = $this->getDoctrine()->getManager();
$query = $em->createQuery(
'SELECT p
FROM FancyStoreBundle:Product p
WHERE p.price > :price
ORDER BY p.price ASC'
)->setParameter('price', '11.11’);
$products = $query->getResult();
In addition, doctrine allow users with its own style of querying results from database table. Now we see some different methods (techniques), how to use Doctrine querying system. Let have the same example of Product table.
Example:
Method 1:
$em = $this->getDoctrine()->getManager();
$qb = $em->createQueryBuilder()
->SELECT('p')
->FROM(FancyStoreBundle:Product', 'p');
$query = $qb->getQuery();
$results=$query->getResults();
Method 2:
$em = $this->getDoctrine()->getManager();
$query = 'SELECT p FROM FancyStoreBundle:Product p;
$qb = $em->createQuery($query);
$results = $qb->getSingleScalarResult();
By surprise all the above queries returns same results. From this shows doctrine allow users by their ways to querying any valid database objects.
CUSTOM REPOSITORY CLASSES:
In the previous sections, you began constructing and using more complex queries from inside a controller. In order to isolate, test and reuse these queries, it's a good practice to create a custom repository class for your entity and add methods with your query logic there.
STEP 1: To do this, add the name of the repository class to your mapping definition
Example:
# src/Fancy/StoreBundle/Resources/config/doctrine/Product.orm.yml
Fancy\StoreBundle\Entity\Product:
type: entity
repositoryClass: Fancy\StoreBundle\Entity\ProductRepository
# ...
STEP 2: Doctrine can generate the repository class for you by running the same command used earlier to generate the missing getter and setter methods
$ php app/console doctrine:generate:entities Fancy
STEP 3: Next, add a new method - findAllOrderedByName() - to the newly generated repository class. This method will query for all of the Product entities, ordered alphabetically.
Example:
// src/Fancy/StoreBundle/Entity/ProductRepository.php
namespace Fancy\StoreBundle\Entity;
use Doctrine\ORM\EntityRepository;
class ProductRepository extends EntityRepository
{
public function findAllOrderedByName()
{
return $this->getEntityManager()
->createQuery(
'SELECT p FROM FancyStoreBundle:Product p ORDER BY p.name ASC'
)
->getResult();
}
}
STEP 4: You can use this new method just like the default finder methods of the repository:
Example:
$em = $this->getDoctrine()->getManager();
$products = $em->getRepository(FancyStoreBundle:Product')
->findAllOrderedByName();
ENTITY RELATIONSHIPS/ASSOCIATIONS:
Suppose that the products in your application all belong to exactly one "category". In this case, you'll need a Category object and a way to relate a Product object to a Category object. Start by creating the Category entity. Since you know that you'll eventually need to persist the class through Doctrine, you can let Doctrine create the class for you.
$ php app/console doctrine:generate:entity --entity=" FancyStoreBundle:Category" - fields="name:string(255)"
This task generates the Category entity for you, with an id field, a name field and the associated getter and setter functions.
RELATIONSHIP MAPPING METADATA:
To relate the Category and Product entities, start by creating a products property on the Category class:
Example:
# src/Fancy/StoreBundle/Resources/config/doctrine/Category.orm.yml
Fancy\StoreBundle\Entity\Category:
type: entity
# ...
oneToMany:
products:
targetEntity: Product
mappedBy: category
# don't forget to init the collection in the __construct() method of the entity
Next, since each Product class can relate to exactly one Category object, you'll want to add a $category property to the Product class:
Example:
# src/Fancy/StoreBundle/Resources/config/doctrine/Product.orm.yml
Fancy\StoreBundle\Entity\Product:
type: entity
# ...
manyToOne:
category:
targetEntity: Category
inversedBy: products
joinColumn:
name: category_id
referencedColumnName: id
Finally, now that you've added a new property to both the Category and Product classes, tell Doctrine to generate the missing getter and setter methods for you
$ php app/console doctrine:generate:entities Fancy
FETCHING RELATED OBJECTS:
When you need to fetch associated objects, your workflow looks just like it did before. First, fetch a $product object and then access its related Category.
Example:
public function showAction($id)
{
$product = $this->getDoctrine()
->getRepository(FancyStoreBundle:Product')
->find($id);
$categoryName = $product->getCategory()->getName();
// ...
}
USEFULL SYMFONY2 COMMANDS (CRUD OPERATIONS) :
1. php app/console generate:bundle TestSampleBundle
2. php app/console doctrine:mapping:import TestSampleBundle yml
3. php app/console doctrine:generate:entities TestSampleBundle
4. php app/console doctrine:crud TestSampleBundle:{EntityName}eg:Product
Nice tutorial and helpful one.
ReplyDeleteAlin Shop
Great Article
DeleteProject Centers in Chennai
Final Year Projects for CSE
Thank you so much for sharing such an amazing post with informative information with us. It’s helpful for everyone, keep updating such a wonderful blog you are shared.
ReplyDeleteBest Linux Training Institute in Kanchipuram | No.1 Linux Training Institute in Kanchipuram
his is really amazing post,thanks for sharing your useful information with us.
ReplyDeleteBest Mobile Computing Project Center in Chennai at Velachery – Saidapet and Pallavaram | Best Mobile Computing Project Center in Chennai at Velachery – Saidapet and Pallavaram
ur Blog is really awesome with valuable information.keep updating.. Best Cloud Computing Project Center in Chennai at Velachery – T.Nagar and OMR | Best Cloud Computing Project Center in Channai at Velachery – T.Nagar and OMR
ReplyDeleteExcellent post!!!. The strategy you have posted in this technology helped me to get into the next level and had lot of information in it.
ReplyDeleteMicrosoft Azure Training Institute in Kanchipuram | Microsoft Azure Training in Kanchipuram
Your Blog is really awesome with useful content,its very helpful for us. Best Image Processing Project Center in Chennai at Velachery – Naganallur and Tambaram | Best Image Processing Project Center in Channai at Velachery – Naganallur and Naganallur
ReplyDeleteThank you so much for sharing such an amazing post with informative information with us. It’s helpful for everyone, keep updating such a wonderful blog you are shared.
ReplyDeleteBest CCNP Training Institute in Chennai | CCNP Training in Velachery
Your Blog is really awesome with useful content,thank you so much for sharing such an informative information.keep updating your creative knowledge with helpful article..
ReplyDeleteBest Java Training Institute in Chennai | Java Training Center in Velachery
I found a lot of interesting information here. A really good post, very thankful and hopeful that you will write many more posts like this one. It was a really great experience. We had a really hard time because of four weeks, but at the end of the day it was awesome.
ReplyDeleteBest Linux Training Institute in Kanchipuram | No.1 Linux Training Center in Kanchipuram
This information about the database operations is very useful for me.Thanks for this information.Regards,
ReplyDeletePython Training Institute in Chennai | Python Training Institute in Nanganallur
Thank you so much for sharing such an amazing post with informative information with us. Best MBA Project Center in Velachery – Taramani and Perungudi | Best MBA Project Center in Velachery – Taramani and Perungudi
ReplyDeleteThank you so much for sharing such an amazing post with informative database operations.keep updating such a wonderful blog.Regards,
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Tambaram
Thank you so much for sharing such an amazing post with informative information with us. It’s helpful for everyone, keep updating such a wonderful blog you are shared.Best CCNA Training Institute in Chennai | CCNA Training Center in Velachery
ReplyDeleteThis information about the database operations is very useful for me.Thanks for this article.Regards,
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Adyar
This information about the technology database operations.Thanks for this information.Regards,
ReplyDeleteVMWare Training Institute in Chennai | VMWare Training Institute in Thiruvanmiyur
In this site you clarified the database operations in an effective way.Thanks for this blog.Regards,
ReplyDeletePython Training Institute in Chennai | Python Training Institute in Besant Nagar
This information you shared in this article about the database operations is more efficiency.Thanks for this Blog.Regards,
ReplyDeleteIOS Training Institute in Chennai | IOS Training Institute in Saidapet
In this Blog you demonstrate the valuable information about the database operations. Thanks for your wonderful information. Regards,
ReplyDeleteOutstanding Python Exam Center in Chennai | Outstanding Python Exam Center in St.Thomas Mount
This Blog is very profitable for me that you explained about the database operations. Thanks for your amazing information. Regards,
ReplyDeleteBest Python Exam Center in Chennai | Best Python Exam Center in Porur
In this website you gave the information about the Different ways of symfony2 database operations which is very favourable. Thanks for your marvelous information. Regards,
ReplyDeleteNo.1 Cloud Computing Training Institute in Chennai | No.1 Cloud Computing Training Institute in Sholinganallur
I found a lot of interesting information here in this site. This is really good post, I’m very thankful and hopeful that you will write many more posts like this one. Regards,
ReplyDeleteTop Most IOS Training Institute in Chennai | Top Most IOS Training Institute in Velachery
I wondered upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I’ll be subscribing to your feed and I hope you post again soon.
ReplyDeleteExcellent Web Designing Training Institute in Chennai | Excellent Web Designing Training Institute in T.Nagar
This is really nice information. I was looking for this since a long time. Thanks for sharing. Regards,
ReplyDeleteOutstanding Selenium Training Institute in Chennai | Outstanding Selenium Training Institute in OMR
Thank you so much for sharing such an amazing post with informative information with us. It’s helpful for everyone, keep updating such a wonderful blog you are shared.
ReplyDeletePerfect Python Training Institute in Chennai | Perfect Python Training Institute in Perungudi
This is really nice information. I was looking for this since a long time. Thanks for sharing. Regards,
ReplyDeleteBest Web Designing Training Institute in Chennai | Best Web Desigining Training Institute in Taramani
Thanks for sharing a valuable information to us. Thanks for your blog.
ReplyDeleteCIMA training institute in Hyderabad | ISFS
Your Blog is really Nice and Informative. Thanks for sharing such a interesting article. Keep updating. I really enjoy simply reading all of your weblogs.
ReplyDeleteTopMost Python Training Institute in Chennai | TopMost PythonTraining Institute in Madipakkam
Awesome Post!!!You have clearly explained .Its very useful for me to know about new things. Keep on blogging.
ReplyDeleteTopMost Cloud Computing Training Institute in Chennai | TopMost Cloud Computing Training Institute in Tambaram
Nice Post. Thank you for sharing.
ReplyDeletePayroll Software
Leave Management Software
HR Payroll Software
Attendance Management System
HR Management Software
Nice Post! It is really interesting to read from the beginning & I would like to share your blog to my circles, keep sharing.
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Velachery
Nice Post! It is really interesting to read from the beginning & I would like to share your blog to my circles, keep sharing.
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in Meenambakkam
Your Blog is really Nice and Informative. Thanks for sharing such a interesting article. Keep updating. I really enjoy simply reading all of your weblogs.
ReplyDeleteWeb Designing and Development Training Institute in Chennai | Web Designing and Development Training Institute in Thiruvanmiyur
Nice and good article. It is very useful for me to learn and understand easily. Thanks for sharing your valuable information and time. Please keep updating.
ReplyDeleteAndroid Apps Training Institute in Chennai | Android Apps Training Institute in Besant Nagar
Nice and good article.. it is very useful for me to learn and understand easily.. thanks for sharing your valuable information and time.. please keep updating.
ReplyDeleteWeb Desigining Training Institute in Chennai | Web Designing Training Institute in Pallavaram
Your Blog is really Nice and Informative. Thanks for sharing such a interesting article. Keep updating. I really enjoy simply reading all of your weblogs.
ReplyDeleteWeb Desigining Training Institute in Chennai | Web Designing Training Institute in Pallavaram
Awesome Post!!!You have clearly explained .Its very useful for me to know about new things. Keep on blogging.
ReplyDeleteVMware Training Institute in Chennai | VMware Training Institute in Meenambakkam
Awesome..You have clearly explained ...Its very useful for me to know about new things..Keep on blogging..
ReplyDeleteAndroid Training Institute in Chennai | Android Training Institute in T.nagar
Such a wonderful post...! Really nice content and I learn more details about this topic. I want more info from your post, Keep posting...
ReplyDeleteLinux Training in Chennai
Linux Course in Chennai
Excel Training in Chennai
Oracle Training in Chennai
Unix Training in Chennai
Tableau Training in Chennai
Embedded System Course Chennai
Oracle DBA Training in Chennai
Primavera Training in Chennai
Power BI Training in Chennai
Great Article
ReplyDeleteIEEE Projects on Cloud Computing
Final Year Project Centers in Chennai
nice..
ReplyDeleteinternship for bba students
internship certificate for cse students
internship training in chennai
internships in hyderabad for cse students 2020
r training in chennai
robotics course
internship for ece students in core companies
internship for aeronautical engineering students in bangalore
internship for cse students in bangalore 2019
industrial visits for college students in chennai
Wow!!..What an excellent informative post, its really useful.Thank you so much for sharing such a awesome article with us.keep updating..
ReplyDeleteVMware Certification Training in Chennai | VMware Training Institute in Velachery | VMware Certification Courses in Medavakkam
Excellent article written in understandable way. thanks for sharing. join our,..
ReplyDeletePCB Designing Training Institute in Chennai | PCB Training Center in Velachery | PCB Designing Courses in Perungudi
Great post.Thanks for one marvelous posting! I enjoyed reading it;The information was very useful.Keep the good work going on!!
ReplyDeleteTally Training Institute in Chennai | Tally Training in Velachery | Best Tally Courses in Guindy | Tally Training Center in Pallikaranai
I am reading your post from the beginning,it was so interesting to read & I feel thanks to you for posting such a good blog,keep updates regularly..
ReplyDeleteWeb Designing and Development Training in Chennai | Web Designing Training Center in Velachery | Web Design Courses in Pallikaranai
Awesome post.. Really you are done a wonderful job.thank for sharing such a wonderful information with us..please keep on updating..
ReplyDeletePCB Designing Training Institute in Chennai | PCB Training Center in Velachery | PCB Design Courses in Thiruvanmiyur
Nice totorial.You explained well with examples.Thank you for sharing this
ReplyDeleteSpark Training In Bangalore
Apache Spark Training in Bangalore
Apache spark course in Bangalore
Wonderful article..This is very informative blog. Glad to found your blog.Helps to gain knowledge about new concepts and techniques. Thanks for posting information in this blog..
ReplyDeleteLinux Certification Training Institute in Chennai | Linux Training Center in Velachery | Linux Courses in Medavakkam
This is useful post for me. I learn lot of new information from your post. keep sharing. thank you for share us..
ReplyDeleteWeb Designing Training Institute in Chennai | Web Design Taining Center in Velachery | Web Designing Courses in Taramani
MBA Project Center in Chennai | MBA Project Center in Velachery | MBA HR Projects in Pallikaranai | MBA Finance Projects in Taramani
ReplyDeleteAwesome nice post...
ReplyDeleteinternship report on python
free internship in chennai for ece students
free internship for bca
internship for computer science engineering students in india
internships in hyderabad for cse students 2018
electrical companies in hyderabad for internship
internships in chennai for cse students 2019
internships for ece students
inplant training in tcs chennai
internship at chennai
it is good blogs!!!
ReplyDeletepaid internships in pune for computer science students
machine learning training in chennai
data science internship in chennai
dot net training in chennai
kaashiv infotech chennai
internship for aeronautical engineering students in india
internship in automobile industry
big data internship in chennai
machine learning internship in chennai
internship in chennai for it students
good....nice
ReplyDeletecategory/advocate-resume
category/agriculture-forestry-fishing
category/android-developer-resume
category/assistant-professor-resume
category/chartered-accountant-resume
category/database-resume
category/design-engineer-resume
category/developer-resume
category/engineer-resume
category/entrepreneur-and-financial-services-resume
good... nice... very useful..
ReplyDeleteassistant-director-resume-format
director-resume-sample
assistant-professor-resume-sample
back-office-executive-resume-samples
bank-branch-manager-resume-samples
basketball-coach-resume-sample-coach-resumes
bca-fresher-resume-sample
best-general-manager-resume-example
bpo-resume-freshers-sample
bpo-resume-samples-for-freshers
good.....nice..
ReplyDeletecategory/maintenance-resume
category/manager-resume
category/mechanical-engineering-resume
category/network-engineer-resume
category/officer-resume
category/operations-resume
category/process-associate-resume
category/quality-control-resumes
category/software-engineer-resume
ReplyDeletefilm-director-resume
finance-and-accounting-manager-resume-samples
finance-director-resume-examples
fire-safety-officer-resume-sample
fleet-maintenance-manager-resume-samples
format-for-resume-writing
fresher-computer-engineers-resume-sample
fresher-hr-resume-sample
fresher-hr-resume-sample-2
fresher-lecturer-resume
Very interesting blog which helps me to get the in depth knowledge about the technology, Thanks for sharing such a nice blog..
ReplyDeleteJava Project Center in Chennai | Java Project Center in Velachery | Java Projecs in Perungudi
I have read your blog. Your information is really useful for beginner. information provided here are unique and easy to understand. Thanks for this useful information. This is a great inspiring article. I am pretty much pleased with your good work.
ReplyDeleteAWS Training Institute in Chennai | AWS Training Center in Velachery | AWS Certification Training in Velachery
Nice Information my sincere thanks for sharing this post Please Continue to share this kind of post
ReplyDeleteLinux Training Institute in Chennai | Linux Training Center in Velachery | Online Linux Training in Velachery | Linux Courses in Velachery
Excellent post... Thank you for sharing such a informative and information blog with us.keep updating such a wonderful post..
ReplyDeleteMicorSoft Azure Training Institute in Chennai | Azure Training Center in Chennai | Azure Certification Training in velachery | Online Azure training in Velachery
Your blog is really amazing, its very informative article and useful for everyone.. Thanks for
ReplyDeletesharing such a nice post..
Java Training Institute in Chennai | Java Training Center in Velachery | Java Courses in Velachery | Java online Training in Velachery
Good article! Thank you so much for sharing this great post, it was so good to read.
ReplyDeletedevops engineer responsibilities
7habits
mobile app testing tools
benefits of web development
basic excel interview questions
It is the best information for this topic and kindly updating here...
ReplyDeleteOpenspan Online Training
Openspan Online Course
Matlab Training in Chennai
Leadership Training in Chennai
Thank you so much for sharing this worth able content with us. Keep blogging article like this.
ReplyDeletePython Training in Chennai and Velachery |
AWS Training Center in Chennai & Velachery |
Java Training center in velachery|
Microsoft Azure Training Center in Chennai & Velachery |
Best ISTQB Exam center in velachery |
Nice blog. I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
ReplyDeleteJava Training center in velachery|
Microsoft Azure Training Center in Chennai & Velachery |
Best ISTQB Exam center in velachery |
Dot Net Trainig in Chennai and Velachery |
Python Training Center in Chennai and Velachery |
CCNA Training Center in Chennai & Velachery |
Really I Enjoy this Blog…Very Nice Post…Thanks….
ReplyDeleteDot Net Trainig in Chennai and Velachery |
Python Training Center in Chennai and Velachery |
CCNA Training Center in Chennai & Velachery
Java Training center in velachery|
Web Designing and Development Training in velachery|
Microsoft Azure Training Center in Chennai & Velachery |
Best ISTQB Exam center in velachery |
Great article, your blog was really unique... thanks for sharing…
ReplyDeleteSelenium Training Center in Velachery | Tally Training center in velachery | Software Testing Training Center in Velachery | Web Designing and Development Training in velachery| Dot Net Trainig in Velachery | Python Training Center in Velachery | Java Training center in velachery|
Nice Post. Thanks for sharing. Keep on updating.
ReplyDeleteSoftware Testing Training Center in Velachery | Web Designing and Development Training in velachery| Dot Net Trainig in Velachery | Python Training Center in Velachery | Java Training center in velachery| Selenium Training Center in Velachery | Tally Training center in velachery |
This blog is really useful and it is very interesting thanks for sharing, it is really good and exclusive.
ReplyDeleteTally Training center in velachery | Software Testing Training Center in Velachery | Web Designing and Development Training in velachery| Dot Net Trainig in Velachery | Python Training Center in Velachery | Java Training center in velachery| Selenium Training Center in Velachery |
Useful information and Please keep updating us..... Thanks for sharing...
ReplyDeletePython Training Center in Velachery |
Java Training center in velachery|
Selenium Training Center in Velachery |
Tally Training center in velachery |
Software Testing Training Center in Velachery |
Web Designing and Development Training in velachery|
Dot Net Trainig in Velachery |
Thanks for sharing such a wonderful blog here...
ReplyDeleteDot Net Trainig in Velachery |
Python Training Center in Velachery |
Java Training center in velachery|
Selenium Training Center in Velachery |
Tally Training center in velachery |
Software Testing Training Center in Velachery |
Web Designing and Development Training in velachery|
Nice post... Really you are done a wonderful job. Thanks for sharing such wonderful information with us. Please keep on updating...
ReplyDeleteSummer Courses Training in Velachery|
Software Testing Training in Velachery |
ISTQB Training in Velachery |
Selenium Automation Training in Velachery |
JAVA Training in Velachery |
Nice and informative article. Thanks for sharing such nice article, keep on updating.
ReplyDeleteSelenium Training in Chennai |
ISTQB Training in Chennai |
Summer Courses Training in Chennai|
Software Testing Training in Chennai |
JAVA Training in Chennai |
The Content you have post on this blog Guided me to get into the Advanced level and had lot of information in it…
ReplyDeleteWeb Designing Training Center in Velachery |
Summer Courses Training in Velachery|
Software Testing Training in Velachery |
JAVA Training in Velachery |
Selenium Training in Velachery |
Wow such a nice blog, very usefull information. Thanks for sharing.
ReplyDeleteJAVA Training in Velachery |
Web Designing Training Center in Velachery |
Tally Training in Velachery |
Selenium Training in Velachery |
Summer Courses Training in Velachery|
I am getting lots of information from your site. Keep posting . Thank you...
ReplyDeleteHardware and Networking Training in Chennai |
Web Designing Training Center in Chennai |
Tally Training in Chennai |
Summer Courses Training in Chennai|
AWS Training in Chennai|
Blog is very informative… It helped me with great information so I really believe you will do much better in the future.
ReplyDeleteDot Net Training in Chennai |
AWS Training in Chennai|
Python Training in Chennai|
Web Designing Training Center in Chennai |
Tally Training in Chennai |
Hardware and Networking Training in Chennai |
Great post. This is really helpful for me. I like it. Thanks for sharing.
ReplyDeleteWeb Designing Training Center in Chennai |
Python Training in Chennai|
Tally Training in Chennai |
Dot Net Training in Chennai |
Hardware and Networking Training in Chennai |
AWS Training in Chennai|
Good Content and informative article. Thanks for sharing such nice article, keep on updating.
ReplyDeleteGRE Exams in Velachery|
GRE Exams in Chennai|
GRE Exams in Tharamani|
GRE Exams in Perungudi|
GRE Exams in Thambaram
Wow!!..Superb Blog, its very an amazing content. Thanks for sharing such a nice post..
ReplyDeleteITIL Exam Center in Chennai | ITIL Exams in Velachery | ITIL Certification Exams in Chennai | ITIL Exam Center in Velachery | ITIL Exam in Velachery
Thanks for sharing hi-tech graphics designer is always awake to impressively make your content visible in the social media market in the best package among the best graphics designing agencies in Chennai.
ReplyDeleteWonderful information and really its very much useful Blog . Thanks for sharing and keep updating like this …….
ReplyDeleteITIL Exams in Chennai|
ITIL Exams in Velachery|
ITIL Exams in Tharamani|
ITIL Exams in Perungudi|
ITIL Exams in Thambaram
Very impressive and informative blog. Thanks a lot for sharing, and keep updates more.
ReplyDeleteSoftware Testing Training Institute in Velachery |
Software Testing Training Institute in Chennai |
Software Testing Training Institute in Tambaram |
Software Testing Training Institute in Taramani|
Software Testing Training Institute in Medavakkam
This is useful post for me. I learn lot of new information from your post. keep sharing. thank you for share us...
ReplyDeleteGRE Test Center in Chennai | GRE Test Center in Velachery | GRE Test in Chennai | Online GRE Exams in Velachery | Online GRE Certification in Velachery
Impressive blog with Usefull information. Really very useful article for us thanks for sharing such a wonderful blog...
ReplyDeleteITIL Exams in Chennai|
ITIL Exams in Velachery|
ITIL Exams in Tharamani|
ITIL Exams in Perungudi|
ITIL Exams in Thambaram
Thanks for sharing such a wonderful blog here...
ReplyDeleteIELTS Training in Chennai|
TOEFL Training in Velachery|
IELTS Training in Tharamani|
TOEFL Training in Perungudi|
IELTS Training in Thambaram
Nice post.. Its really an amazing with informative information and useful for everyone. Thanks for sharing your wonderful article..
ReplyDeleteAWS Certification in Chennai | AWS Exam Center in Chennai | AWS Exams in Velacheri | AWS Online Exams in Velachery | Online Certification in Chennai
“Nice post!” Keep up the Amazing Good Work. Really your post was very interesting to read. Waiting for your upcoming update. Good Luck….
ReplyDeleteAWS Training Institute in Velachery |
AWS Training Institute in Chennai |
AWS Training Institute in Tambaram |
AWS Training Institute in Taramani|
AWS Training Institute in Medavakkam
Wonderful Article. Thank you for updating such an informative content.
ReplyDeleteLinux Training in chennai |
Dot Net Training in chennai |
AWS Training in chennai|
Certified Ethical Hacking Training in Chennai|
Hardware and Networking Training in chennai |
Python Training in chennai|
Web Designing Training Center in chennai
Amazing blog Thanks for sharing this content keep updating this kind of blogs
ReplyDeleteGraphic Design Training Institute In Chennai. |
Graphic Design Android Training Institute In velachery. |
Graphic Design Training Institute In medavakkam |
Graphic Design Training Institute Pallikaranai. |
Graphic Design Training Institute In Tharamani. |
Graphic Design Training Institute In Thiruvanmiyur. |
Graphic Design Training Institute In perungudi. |
Graphic Design Training Institute In Thambaram..
Great article, your blog was really unique... thanks for sharing…
ReplyDeleteLinux Training in chennai |
Dot Net Training in chennai |
AWS Training in chennai|
Certified Ethical Hacking Training in Chennai|
Hardware and Networking Training in chennai |
Python Training in chennai|
Web Designing Training Center in chennai
Nice blog. You put Good stuff. All the topics were explained briefly. So easily understand for me. I am waiting for your next awesome blog. Thanks for sharing.
ReplyDeletePython Training Institute in Velachery |
Python Training Institute in Chennai |
Python Training Institute in Tambaram |
Python Training Institute in Taramani|
Python Training Institute in Medavakkam
Nice post. It was really effective. Thank you for sharing.
ReplyDeleteAWS Training in Chennai & velachery|
Certified Ethical Hacking Training in Chennai & velachery|
Linux Training in Chennai & velachery |
Hardware and Networking Training in Chennai & velachery |
JAVA Training in Chennai & velachery |
Python Training in Chennai & velachery |
Dot Net Training in Chennai & velachery |
Web Designing Training Center in Chennai & velachery |
Amazing Information my sincere thanks for sharing this post Please Continue to share this kind of blog..
ReplyDeleteFinal Year Project Center in Chennai | Final Year Projects in Velachery | Final Year IEEE Projects in Velachery | Online Project Center in Chennai | BE Projects in Chennai | ME Projects in Velachery
Nice blog. I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
ReplyDeleteJAVA Training in Chennai & velachery |
Python Training in Chennai & velachery |
AWS Training in Chennai & velachery|
Certified Ethical Hacking Training in Chennai & velachery|
Linux Training in Chennai & velachery |
Hardware and Networking Training in Chennai & velachery |
Dot Net Training in Chennai & velachery |
Web Designing Training Center in Chennai & velachery |
stone island
ReplyDeleteoff white
golden goose sneakers
golden goose
curry shoes
kd 12
golden goose
curry 7
stephen curry shoes
golden goose shoes
Looking for a good deal on bulk glitter? Explore a wide range of the best bulk glitter on GlitterMall to find one that suits you! Besides good quality brands, you’ll also find plenty of discounts when you shop for bulk glitter during big sales. Don’t forget one crucial step - filter for items that offer bonus perks like free shipping & free return to make the most of your online shopping experience!
ReplyDeleteNice Blog. Thank you for Sharing..
ReplyDeletePython Training Institute in Chennai | python Training in Velachery
Very informative blog. Thanks for sharing such a excellent blog. It is very useful for everyone. keep sharing
ReplyDeleteGMAT Test Center in Chennai | GMAT Test Center in Velachery
Nice Blog.. Thanks for sharing and keep updating..
ReplyDeleteGRE Test Center in Chennai | GRE Test Center in Velachery
Thank you so much for such valuable information sharing. It’s highly appreciated
ReplyDeleteAgile Scrum Master Training in Chennai | Agile Scrum Master Training in Velachery
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyDeleteGMAT Test Center in Chennai | GMAT Test Center in Velachery
Thank you so much for sharing your nice post with us.. keep updating..
ReplyDeleteGMAT Test Center in Chennai | GMAT Test Center in Velachery
PMP Preparatory Training in Chennai | PMP Preparatory Training in Velachery
ReplyDeletebest buy smart watch professional in R&D wearable blood pressure monitor, in the innovative form of a wrist watch, proactively monitors your heart health by turning real-time heart data into heart.
ReplyDeletemason jar lids canning lids supplier. offer canning Lids in different style and size
Cervical spine massager We aim to create a healthy lifestyle that assists every individual to de-stress, relax. unwind and streamline a pain-free life and at the same time feel and look amazing.
sex machine for sale Choose Sex Machine to Get Orgasm and Enjoy Life
moving dildo Enjoy sexual life for both men and women
neon light for roomNeon Signs Light Is One-of-a-Kind Activities Designed and Hosted by Expert Locals. All Experiences are Vetted for Quality.
dog training collarsPets Supplier mall offers the ultimate pet shop experience. We have all the pet supplies, pet food, toys and accessories you and your pet needs at great prices. Find all the best pets suppliers coupons, promotion.
novelty giftsDiscover the latest and most interesting gadgets at a bargain price
Car decorationHere you will find the latest and most fashionable car accessories
Really an amazing blog with useful information.. keep updating..
ReplyDeleteGMAT Test Center in Chennai | GMAT Test Center in velachery
Nice post... Really you are done a wonderful job. Thanks for sharing keep on updating...
ReplyDeleteCertified Ethical Hacking Training in Tambaram|
Linux Training in Tambaram |
AWS Training in Tambaram|
Advanced & Core JAVA Training in Tambaram |
Python Training in Tambaram|
Hardware and Networking Training in Tambaram |
Dot Net Training in Tambaram |
Web Designing Training Center in Tambaram |
I am really happy to read your blog. Your article is awesome with impressive content. Keep updating..
ReplyDeleteIELTS Test Center in Chennai | IELTS Test Center in Velachery
Get Oracle training in Chennai. One of the booming industries is Oracle. It has an erasable place in the IT industry. More than 70% of students choose oracle for their career and All the 70% are shining with a good salary package this the power of the Oracle.Best Oracle Training in Chennai | Infycle Technologies
ReplyDeleteThanks for sharing your blog articles with us .... This is actually amazing and very useful information .I admire the valuable information you offer in your articles. Thanks for posting it....And i would like to share our website final year mba projects chennai
ReplyDeletesites pop over to this site image source Web Site a knockout post Dolabuy Fendi
ReplyDeletehop over to these guys designer replica luggage pop over to this website https://www.dolabuy.su article dolabuy louis vuitton
ReplyDeleteMicrosoft Azure certification training in Chennai is career-oriented training and you will master managing the Azure to become a certified Azure Administrator. This Azure Administrator online training course in Chennai is aligned with Microsoft certification. Get in-depth experience in Azure.FITA Academy offers the best Microsoft Azure Training in Chennai for aspirants to learn about Microsoft’s Cloud Services extensively. The wide range of Microsoft’sCloud Services like Computing, Storage, Analytics, Networking, etc is precisely taught to students through best hands-on practices. Microsoft’s Cloud Solutions like IaaS, PaaS, SaaS, and Serverless Computing are also conducted largely. Learning at Alltech Academy will make students stand out from the crowd and be distinguishable in terms of achieving proficiency and expertise in developing Microsoft’s Cloud Services.
ReplyDeleteAlltechzsolutions provides 100% real-time, practical and placement focused CCNA training in Chennai. Our CCNA course concentrates from basic level training to advanced level training. Our CCNA® training in completely focused to get placement in MNC in Chennai and certification on CCNA after completion of our course. Our team of CCNA trainers are CCNA certified professionals with more real-time experience in live projects. Our CCNA® Course syllabus is enough for anyone who wants to get CCNA certification which meets industry expectations. In our course plan, you will learn Networking concepts,OSI – Model,TCP/IP Model & Ipv4 Addressing, with practical exercises and live examples.Alltechzsolutions offer both off line and online courses.
ReplyDelete