-
-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added collection param to IQuery.For and IQuery.ForIndex method #389
base: main
Are you sure you want to change the base?
Added collection param to IQuery.For and IQuery.ForIndex method #389
Conversation
Hi @sebastienros any feedback related to this PR ? |
311bfab
to
02ab692
Compare
@@ -30,7 +30,7 @@ public QueryState(ISqlBuilder sqlBuilder, IStore store, string collection) | |||
|
|||
public string _bindingName = "a1"; | |||
public Dictionary<string, List<Type>> _bindings = new Dictionary<string, List<Type>>(); | |||
public readonly string _documentTable; | |||
public string _documentTable; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe remove it from there and only compute it when the query is executed?
@@ -4155,6 +4155,8 @@ public async Task ShouldQueryInnerSelectWithCollection() | |||
Assert.Equal(0, await session.Query<Person, PersonByNameCol>(collection: "Col1").Where(x => x.Name.IsNotInAny<PersonByBothNamesCol>(y => y.Firstname)).CountAsync()); | |||
|
|||
Assert.Equal(2, await session.Query("Col1").For<Person>().With<PersonByNameCol>().Where(x => x.Name.IsInAny<PersonByBothNamesCol>(y => y.Firstname)).CountAsync()); | |||
Assert.Equal(2, await session.Query().For<Person>(collection:"Col1").With<PersonByNameCol>().Where(x => x.Name.IsInAny<PersonByBothNamesCol>(y => y.Firstname)).CountAsync()); | |||
Assert.Equal(2, await session.Query("Col2").For<Person>(collection: "Col1").With<PersonByNameCol>().Where(x => x.Name.IsInAny<PersonByBothNamesCol>(y => y.Firstname)).CountAsync()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually I am confused now. Query
already has a constructor with a collection, so the For
call should use this one. So I read the issue again and I see that you are trying to hack the state of the query. I'd prefer a solution where you can plug a custom "CollectionResolver" that could be configured instead. So the Query()
constructor would either take a collection name, or a CollectionResolver
, or nothing to use default Collectionresolver from the configuration. That might be even better for your design.
This PR tries to fix problem extending YesSql functionality at custom Orchard Core module described at this comment #38 (comment)
After the change in this PR a third party can provide ISession, IQuery and ISchemaBuilder implementations which automatically choose the collection based on the type of the object to store/load instead of force the consumer to decide the collection.
In Orchard use an alternate ISession, IQuery and ISchemaBuilder like that allows to change the collection to store/load any type defined in own modules or in modules of the orchard framework