Join not fire after filter when sencode source item add after the first source item fire. #1006
-
In my case, I have two source A and B. The item in B for most of time comes with a delay compared with A. Paried A and B are used to build up a viewmodel.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If I'm reading you correctly, you're saying that...
If so, I would say that you need to rewrite your filter logic so that items from A that don't have a matching item in B don't get excluded. The |
Beta Was this translation helpful? Give feedback.
If I'm reading you correctly, you're saying that...
.Filter(filter)
excludes items from A when they do not have a matching item in BIf so, I would say that you need to rewrite your filter logic so that items from A that don't have a matching item in B don't get excluded. The
.InnerJoin()
effectively performs this exclusion for you. If this is not feasible, you need to adjust the filtering query to ensure that it refreshes when items get added to B, so that items from A that were previously filtered out get added back. You're already using.AutoRefresh()
before.Filter()
within your first quer…