Skip to content

Commit

Permalink
Issue #75 - Virtualize ApplicationSObjectSelector
Browse files Browse the repository at this point in the history
  • Loading branch information
stohn777 committed Mar 11, 2023
1 parent ef5ba4a commit ce80a22
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,19 +139,19 @@ public abstract class ApplicationSObjectSelector
return standardFields;
}

public IApplicationSObjectSelector addQueryFactoryParentSelect(fflib_QueryFactory parentQueryFactory, Schema.SObjectField relationshipField)
public virtual IApplicationSObjectSelector addQueryFactoryParentSelect(fflib_QueryFactory parentQueryFactory, Schema.SObjectField relationshipField)
{
this.configureQueryFactoryFields( parentQueryFactory, relationshipField.getDescribe().getRelationshipName());

return this;
}

public String selectSObjectsByIdQuery()
public virtual String selectSObjectsByIdQuery()
{
return newQueryFactory().setCondition('id in :idSet').toSOQL();
}

public List<SObject> selectInjection( System.Type methodClazzType, ISelectorMethodParameterable params )
public virtual List<SObject> selectInjection( System.Type methodClazzType, ISelectorMethodParameterable params )
{
if ( methodClazzType == null )
{
Expand Down

0 comments on commit ce80a22

Please sign in to comment.