arslanmughal99/angular-typeorm

Example to work with this

Closed this issue · 5 comments

I am using your library but i no have no example to work with this lib, you can hive me some example in an angular component, thanks

You can initialize connection in your AppModule like this

import { AngularTypeormModule } from 'angular-typeorm';

@NgModule({
  declarations: [],
  imports: [
    AngularTypeormModule.forRoot({
        // Put your typeorm
        // connection options here  
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})

export class AppModule {}

And to use connection in your angular services you can import connection from typeorm directly like this.
https://typeorm.io/#/connection-api

import {getConnection} from "typeorm";

const connection = getConnection();

Yes i did this but look the error that i have
image
angular + electron

module configuration

AngularTypeormModule.forRoot({
      type: 'sqlite',
      database: 'dist/assets/database.db',
      entities: [
        __dirname + '/entity/*.ts'
      ],
      synchronize: true,
    })

Make sure to replace pg with sqlite in the angular.webpack.js