Also if you add #FOO to UserGlobals you should be able to reference it like:
FOO add: user
ie. without the symbol hash (#)
> On 17 Aug 2019, at 11:28 pm, ian wrote:
>
> ---
> #FOO add: user
> ---
> The difficulty I am having is that when I want to query the UserManager db
> with something like:
>
> ---
> RcIdentityBag(users) select: [ :each | each name := 'somename' ]
> —
Not sure if it’s just a typo, but it appears you’re trying to use assignment (
:= ) rather than comparison ( = ) so
Hi All,
Learning; Please bear with me.
Scenario:
1. Class>>User. InstVars: #(this that other userStatus userMeta)
2. Class>>UserManager (singleton). Instvars: users (RcIdentityBag: users)
When User is instantiated all its' instVars are populated correctly. Nested
objects as well.
To insert