Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 209 Bytes

MultipleDatabase.md

File metadata and controls

6 lines (4 loc) · 209 Bytes

Multiple Entity Managers and Connections

  • 使用代码示例

      $customerEntityManager = $doctrine->getManager('customer');
    
      $customers = $doctrine->getRepository(Customer::class, 'customer')->findAll();