User689330941 posted
Meaning that this "this.databaseSet = entities.Set<T>();" from my program is being flagged out for this Fortify Category : Access Control: Database which the recommendation was to:
Rather than relying on the presentation layer to restrict values submitted by the user, access control should
be handled by the application and database layers. Under no circumstances should a user be allowed to
retrieve or modify a row in the database without the appropriate permissions. Every query that accesses
the database should enforce this policy, which can often be accomplished by simply including the current
authenticated username as part of the query.
I am not sure how to change so that it won't be flagged out in the next scan.