Ejemplo n.º 1
0
        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());
        }
Ejemplo n.º 2
0
        public static ISelectStatement Join(this ISelectStatement select, ITableExpression table, IFilterExpression on, IJoinOperator joinOperator)
        {
            IJoinExpression join = new JoinExpression(joinOperator, table, on);

            return(Join(select, join));
        }
Ejemplo n.º 3
0
 public static ISelectStatement J(this ISelectStatement select, ITableExpression table, IFilterExpression on, IJoinOperator joinOperator)
 {
     return(Join(select, table, on, joinOperator));
 }