Doctrine Relationship Management Between Entities

doctrine-entity

As we are using Doctrine ORM for easing our database layer programming, it's very important to understand how to establish the doctrine relationship between entities and do it in proper way to build a robust relational database design. Here by the … [Read more...]

Transformation Between Doctrine Entity And MySQL Database

doctrine orm

If you have started using doctrine ORM, you should already have the idea how tightly the database and doctrine entity are bonded together. Any kind of change must need to be reflected on doctrine entity and database itself as well. That can become a … [Read more...]

How To Execute Native SQL Query With Doctrine

doctrine

So, seems like you are in big trouble? Otherwise why you will want to execute doctrine native SQL query? In this tutorial I will describe and show how you can perform such operations. But that doesn't necessarily mean, I am encouraging you to use it … [Read more...]

Doctrine Model Plugin For Codeigniter

codeigniter

On an earlier tutorial, I did showed how we can easily perform the CRUD operations using doctrine ORM. However, as a lot of developers use doctrine ORM as part of their favorite Codeigntier framework, I came to feel that, it will be very useful if we … [Read more...]

Basics On Doctrine CRUD Operations

Dctrine ORM

Some developers don't start using doctrine in their application, just because, they find it a little difficult to get started(I listened so from some of my own friends too). And unluckily, I also faced some similar issue as well. I tried to start it … [Read more...]

Using SQL JOIN Operation In LinQ/C#

linq to sql tutorial

Being LinQ an Object Relational Mapper, We can avoid writing sql query in many cases. Where its needed to be written even for simple purpose, we can achieve what we need just by calling linq provided methods with proper parameters.This facilitates to … [Read more...]

LinQ Query With Like Operator

linq to sql tutorials

Linq To SQL makes a developer's life easy for performing various database operations. If the database design is stable, Linq To SQL will do all the jobs for you for maintaining consistency between data relations. Simple data retrieval, insertion, … [Read more...]

LinQ To SQL Database Update Operations In C#

LinQ C# Tutorials

Recently, I have discussed about getting started linq to sql in c#.net. That articles also covered for creating select query for retrieving both single and multiple results. Today, in this tutorial, I will try to give some more examples on other … [Read more...]