We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to make sure that Application Services don't call other Application Services and call DomainServices instead.
private IObjectProvider<Class> AppServices = Classes().That().HaveName(@"\S+AppService", true); //... Classes().That().Are(AppServices).Should().NotCallAny( MethodMembers().That().AreDeclaredIn(AppServices) );
However, code like this violates this rule
public class MyAppService { public void Smth(){} public void SmthElse() { Smth(); } }
Is there a way to exclude "self" from the rule? If not, is there any other workaround?
The text was updated successfully, but these errors were encountered:
Hello @max-arshinov, a workaround at this time would be:
var AppServices = Classes().That().HaveName(@"\S+AppService", true); foreach (var appService in AppServices.GetObjects(ARCHITECTURE)) { Classes() .That() .Are(AppServices) .And() .AreNot(appService) .Should() .NotCallAny(MethodMembers().That().AreDeclaredIn(appService)) .Check(ARCHITECTURE); }
or similarly:
var AppServices = Classes().That().HaveName(@"\S+AppService", true); foreach (var appService in AppServices.GetObjects(ARCHITECTURE)) { Classes() .That() .Are(appService) .Should() .NotCallAny( MethodMembers() .That() .AreDeclaredIn(AppServices) .And() .AreNotDeclaredIn(appService) ) .Check(ARCHITECTURE); }
We have a similar case in #229 where self references lead to such a problem and are working on a solution.
Sorry, something went wrong.
alexanderlinne
No branches or pull requests
I want to make sure that Application Services don't call other Application Services and call DomainServices instead.
However, code like this violates this rule
Is there a way to exclude "self" from the rule? If not, is there any other workaround?
The text was updated successfully, but these errors were encountered: