You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but it think it should be the same in other expressions.
I would need this feature to allow triggers to target a shadow property (which is mapped to a column) of the entity, my question is: how can I replace this condition correctly?
So that it gets added to the list of columns which get fetched into the cursor, and generates the correct SQL.
I don't think IMethodCallVisitor is the most appropriate method at this point.
From a quick look at the code (specially the TriggerVisitor) I see that for each visited member should be declared on the entity, right?
The text was updated successfully, but these errors were encountered:
At the moment EF.Property is not supported.
I tried adding it as an
IMethodCallVisitor
but it gives me an error:I guess it's because of the first argument which is the instance of the entity.
I'm using it as
argumentSelectors
parameter inExecuteRawSql
with something like that:but it think it should be the same in other expressions.
I would need this feature to allow triggers to target a shadow property (which is mapped to a column) of the entity, my question is: how can I replace this condition correctly?
So that it gets added to the list of columns which get fetched into the cursor, and generates the correct SQL.
I don't think
IMethodCallVisitor
is the most appropriate method at this point.From a quick look at the code (specially the
TriggerVisitor
) I see that for each visited member should be declared on the entity, right?The text was updated successfully, but these errors were encountered: