William Velzeboer

Results 16 issues of William Velzeboer

Where can I find a simple example using this PGP crate, encrypting something simple like "Hello, World!" and then decrypting that again? That would be of great help for newbies!...

After upgrading my projects to the latest fflib-apex-common, where some methods were moved from fflib-apex-extensions to fflib-apex-common, I found that a high number of unit-tests were failing. Then I found...

It can be useful to add one error string to all the records of a domain directly from a service class, therefore it needs to be public. And it is...

A common criteria based filter for domains and SOQL condition generator for Selectors. Often the same filters are repeated in the domain and the selector classes. The Criteria feature provides...

enhancement
on hold
query-builder

This is very useful for custom implementations which extend the default behaviour. --- This change is [](https://reviewable.io/reviews/apex-enterprise-patterns/fflib-apex-common/407)

This PR is to create the possibility for different implementations of the Application factories. It is fully backwards compatible with the static maps, as methods are replaced and directing to...

With this change we can link multiple records to the same parent record. ``` fflib_ISObjectUnitOfWork unitOfWork = Application.UnitOfWork.newInstance(); Account accountRecord = new Account(Name = 'Test'); unitOfWork.registerNew(accountRecord); List contactRecords = new...

Often we retrieve data from records in maps, these domain methods will help with avoiding iterations. ``` Account accounts = Accounts.newInstance(records); Map accountNameById = accounts.getStringFieldByIdField(Account.AccountName, Account.Id); ``` instead of: ```...

Sometimes you just need a specific subset of the records from the domain, these methods will make that easier. --- This change is [](https://reviewable.io/reviews/apex-enterprise-patterns/fflib-apex-common/405)

Now it can consume a Map and Map and includes unit-test This is Replacing PR: #390 --- This change is [](https://reviewable.io/reviews/apex-enterprise-patterns/fflib-apex-common/404)