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
Problem is that get_fields etc is in the same interface as all this query builder stuff. This doesn't sit together properly and is baffling on first view. Queries could be separate objects returned by FieldData. The programmer would build the query and use it directly via its own interface only.
rm get_fields etc from FieldData
rm add_get_etc methods from FieldData
create new query class
make query objects createable via FieldData public interface
add interface to query objects so that query can be built and executed
add simple "single shot" interface to FieldData
The text was updated successfully, but these errors were encountered:
Problem is that get_fields etc is in the same interface as all this query builder stuff. This doesn't sit together properly and is baffling on first view. Queries could be separate objects returned by FieldData. The programmer would build the query and use it directly via its own interface only.
The text was updated successfully, but these errors were encountered: