Ejemplo n.º 1
0
        public QueryBuilder From(string value)
        {
            FromInstruction fromInstruction = new FromInstruction {
                ScriptableObject = value
            };

            _queryProcessor.AddFromInstruction(fromInstruction);
            return(this);
        }
Ejemplo n.º 2
0
 public void AddFromInstruction(FromInstruction instruction)
 {
     fromInstruction = instruction;
     _queryableScriptableObjectCollection = new QueryableScriptableObjectCollection(scriptableObjectsCollection.GetFromGroupName(fromInstruction.ScriptableObject));
 }