Exemplo n.º 1
0
        public TEntity Get(TIdentifier identifier)
        {
            if (TryGet(identifier, out var entity))
            {
                return(entity);
            }

            throw new Exception($"{_root.GetPath()}/{typeof(TEntity).Name}/{identifier}' not found");
        }
Exemplo n.º 2
0
 protected string GetPath()
 {
     return($"{_root?.GetPath()}/{GetType().Name}/{GetIdentifier()}");
 }