Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6894803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:49:41+00:00 2026-05-27T06:49:41+00:00

When I read docs about repositories, it is often to work with entities &

  • 0

When I read docs about repositories, it is often to work with entities & collection but in a “read-only” manner.

There are never examples where repositories have methods like insertUser(User $user) or updateUser(User $user).

However, when using SOA, Service should not be working with Entity Manager (that’s right, isn’t it?) so:

  1. Should my service be aware of the global EntityManager?
  2. Should my service know only about the used Repositories (let’s say, UserRepository & ArticleRepository)

From that both questions, another one, should my service ever explicitly persist() & flush() my entities ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:49:42+00:00Added an answer on May 27, 2026 at 6:49 am

    Yes, repositories are generally used for queries only.

    Here is how I do it. The service layer manages the persistence. The controller layer knows of the service layer, but knows nothing of how the model objects are persisted nor where do they come from. For what the controller layer cares is asking the service layer to persist and return objects — it doesn’t care how it’s actually done.

    The service layer itself is perfectly suitable to know about the the persistence layer: entity or document managers, repositories, etc.

    Here’s some code to make it clearer:

    class UserController
    {
        public function indexAction()
        {
            $users = $this->get('user.service')->findAll();
            // ...
        }
    
        public function createAction()
        {
            // ...
            $user = new User();
            // fill the user object here
            $this->get('user.service')->create($user);
            // ...
        }
    }
    
    class UserService
    {
        const ENTITY_NAME = 'UserBundle:User';
    
        private $em;
    
        public function __construct(EntityManager $em)
        {
            $this->em = $em;
        }
    
        public function findAll()
        {
            return $this->em->getRepository(self::ENTITY_NAME)->findAll();
        }
    
        public function create(User $user)
        {
            // possibly validation here
    
            $this->em->persist($user);
            $this->em->flush($user);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've read some docs about the .NET Garbage Collector but i still have some
I have read the docs and everything but I'm very confused. I never needed
I read some docs about md5, it said that its 128 bits, but why
I've read the Google docs on sitemap formats but there's one thing they don't
I've read many docs about thread states, some of them tells that there is
I read about django signals ( http://docs.djangoproject.com/en/dev/topics/signals/ ), but as far as I understand,
I have already read the hibernate docs about concurrency and I think, I have
I have read Oauth2 Docs but still am yet to get a start to
I very, very like octopress (read it docs) looks awesome! But unfortinatelly i know
I just read an article in the BlackBerry docs about writing efficient code in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.