Posts by Thiago Cruz • 49 points
8 posts
-
0
votes1
answer59
viewsA: How to use the . Sqlquery expression of EF in Efcore?
The resolution was to use the . Fromsql method to run the Procedure. public class MovimentoManualListRepository : RepositoryBase<MovimentoManualList>, IMovimentoManualListRepository {…
-
0
votes1
answer59
viewsQ: How to use the . Sqlquery expression of EF in Efcore?
I’m refactoring a code and I’m having that doubt. public class MovimentoManualListRepository : RepositoryBase<MovimentoManualList>, IMovimentoManualListRepository { ConsultarContext _context;…
-
0
votes1
answer37
viewsQ: Button to delete form if only it is not filled
I have a button that add new locations Forms. I would like to know how to delete the form if you have added it will not be filled. I created this link to delete the fields. <div class="col-12…
-
0
votes1
answer225
viewsQ: Return HD size and free space to client-server
I would like to return to the customer the information of HD size beyond the available space. Client code import socket, pickle HOST = 'localhost' PORT = 9991 udp = socket.socket(socket.AF_INET,…
-
1
votes2
answers2434
viewsQ: Check each file size in a Python folder with 'os'
I’m having a hard time figuring out the size of each file (in KB) in a certain folder. Initially I listed all the files with 'os.listdir' and I believe it has something to do with 'os.stat' to find…
pythonasked Thiago Cruz 49 -
1
votes0
answers1153
viewsQ: Validation by the Viacep API
I am trying to validate the data not only by the zip code (described below), I would like to do the other check, when the customer does not know the zip code and finds the same searching for the…
-
2
votes1
answer1889
viewsQ: How do I filter data by date on a dataframe (Python)
Since you would have to create a new dataframe with the information coming from these dates below. import pandas as pd import numpy as np import datetime %matplotlib inline races =…
-
0
votes1
answer45
viewsQ: "Unfurtunately, Stealth has stopped" FATAL EXCEPTION: main
Whatever amendment I make, I still have no solution to this problem. The android Emulator keeps appearing to msg "Unfurtunately, Stealth has stopped". Being that in Main does not present any error,…