Adf.Core.Query.QueryManager.RunSplit C# (CSharp) Method

RunSplit() public static method

Executes the specified query and return the result, where each row in the result is stored in an instance of IInternalState.
The current state of the connection is closed.
public static RunSplit ( DataSources datasource, IAdfQuery query ) : IEnumerable
datasource Adf.Core.Data.DataSources
query IAdfQuery The that defines the datasource name and query statement.
return IEnumerable
        public static IEnumerable<IInternalState> RunSplit(DataSources datasource, IAdfQuery query)
        {
            using (new TracingScope())
            {
                return query == null ? NullInternalState.NullList : GetHandler(datasource).RunAndSplit(query);
            }
        }