示例#1
0
        public QueryBehaviours(QueryPipeline <TQuery, TResult> pipeline, IQueryBehaviour <TQuery, TResult>[] behaviours)
        {
            HasBehaviours = behaviours.Length > 0;

            _behaviours = behaviours;
            _pipeline   = pipeline;
        }
示例#2
0
 public void Dispose()
 {
     _behaviours = null;
     _pipeline   = null;
 }