我正在为Document Management System设计我的import {Injectable} from '@angular/core';
import {AngularFire} from 'angularfire2';
import {Observable} from 'rxjs/Observable';
//this current code is not making sense. Any suggestion
//to make it an Observable for Signin and Logout?
@Injectable()
export class AuthService {
isAuthenticated:boolean = false;
authObj: Observable<any>;
constructor(public af:AngularFire) {
this.authObj = af.auth;
}
signin() {
//I want to make AngularFire2 Authentication token/obj an Observable. So this will keep emitting an Observable
//that return True.... after successful Federated Google Signin. I want my other component to subscribe to this Observable.
return this.authObj.do(val => this.af.auth.login());
this.isAuthenticated = true;
}
}
表。我有documents
和users
之间的多对多关系以及documents
的联结表我需要其他人的意见,因为我有两种类型的文件,我将要实施。< / p>
我的计划在这里我要将它们放在usersdocuments
表中,而不是做两张桌子。我需要确定用户使用的文档类型?我将使用什么样的数据类型来实现它?
答案 0 :(得分:0)
我将使用哪种数据类型来实现此目的?避免 使用BIT的混淆。
是的,您可以使用BIT
作为该列的数据类型,如
Request
由于Resolution
和select * from documents
where IsRequest = 'true'; // want to fetch only Request type
只有两种类型,您可以通过说
{{1}}