Posts by Vicenzo Martinelli • 98 points
4 posts
-
2
votes1
answer970
viewsA: Usedispatch() inside a useEffect() -> *Missing dependency*
The alert is given because the Dispatch function is not in the useEffect dependency array. To solve need to leave this way useEffect(() => { dispatch(ACTION.CARREGAR()) }, [dispatch])…
-
4
votes1
answer44
viewsA: What is the most efficient way to obtain a property from an Entity?
I work with Nhibernate, but I believe you can do something like this. public IEnumerable<string> GetAllNames() => _context.Users.Select(u => u.Name).OrderBy(u => u);…
-
2
votes2
answers386
viewsQ: eSocial: Invalid Subscription . NET Framework
Invalid Signature Good afternoon, I have a problem transmitting the information to the webservices of eSocial. The process I do is the following: the events Xmls are generated on the server,…
-
0
votes0
answers456
viewsQ: Image storage in mongodb
I’m developing a mobile app in React where there will be several profiles, with up to 5 photos each. Our api is currently in aspnet core 2.0 and we use mongodb as a database. My question is this,…