public override Task OnActivateAsync() { string path = "Scan_" + this.GetPrimaryKeyLong().ToString(); fs = new FileStream(path, FileMode.Create); sw = new StreamWriter(fs); nextOperator = base.GrainFactory.GetGrain <IJoinOperator>(1); return(base.OnActivateAsync()); }
public static ISelectStatement Join(this ISelectStatement select, ITableExpression table, IFilterExpression on, IJoinOperator joinOperator) { IJoinExpression join = new JoinExpression(joinOperator, table, on); return(Join(select, join)); }
public static ISelectStatement J(this ISelectStatement select, ITableExpression table, IFilterExpression on, IJoinOperator joinOperator) { return(Join(select, table, on, joinOperator)); }