Replies: 1 comment 2 replies
-
This appears to be a regression bug. We're clearly missing a test that should have caught this. Would you be so kind as to file this as an issue in the Issues tab? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I'm testing migration of a Csla 4.8 application to 5.4.2.
When the dataportal is looking for the fallback methods (DataPortal_XXX), it doesn't look in the base classes, only in the target type. This is a breaking change from 4.8 as it can't find something like a private void DataPortal_XXX method in the base class.
Old code: MethodCaller.cs , method FindMethod
(there's a loop traversing the hierarchy)
New code: ServiceProviderMethodCaller.cs , FindDataPortalMethod
(There's no loop, it only takes targetType methods as candidates)
Suggested correction: call the old MethodCaller code
Beta Was this translation helpful? Give feedback.
All reactions