public VfpQueryProvider New(VfpQueryPolicy policy) { var provider = New(Connection, Mapping, policy); provider.Log = Log; return(provider); }
protected VfpQueryProvider New(DbConnection connection, QueryMapping mapping, VfpQueryPolicy policy) { if (policy == null) { throw new ArgumentNullException("VfpQueryPolicy required"); } return(new VfpQueryProvider(connection as VfpConnection, VfpLanguage.Default, mapping, policy)); }
internal VfpQueryProvider(VfpConnection connection, QueryLanguage language, QueryMapping mapping, VfpQueryPolicy policy) : base(connection, language, mapping, policy) { }