Example to work with this
Closed this issue · 5 comments
cberenguer commented
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
arslanmughal99 commented
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();
cberenguer commented
cberenguer commented
module configuration
AngularTypeormModule.forRoot({
type: 'sqlite',
database: 'dist/assets/database.db',
entities: [
__dirname + '/entity/*.ts'
],
synchronize: true,
})
arslanmughal99 commented
For electron you can use this boilerplate
https://github.com/arslanmughal99/angular-electron-typeorm
arslanmughal99 commented
Make sure to replace pg with sqlite in the angular.webpack.js