Posts by Anderson Rodrigues • 56 points
5 posts
-
0
votes1
answer845
viewsA: Save form in txt file
Hello, you can use this with the example of the code below (in PHP). <form action="myprocessingscript.php" method="POST"> <input name="field1" type="text" /> <input name="field2"…
-
1
votes4
answers188
viewsA: Import Excel file to R
The ideal is that you use a file without accentuation to avoid localization or encoding problems. Use in the format below. library(readxl) read_excel("MUNICIPIOS.xlsx") Remember that the "xlsx" is…
ranswered Anderson Rodrigues 56 -
1
votes1
answer79
viewsQ: Nhibernate consuming a lot of memory
I have an application that connects to the database via NHibernate, with this some operations are carried out as Save, Update e Delete. However, when performing these procedures, it is incredible…
-
1
votes1
answer176
viewsA: Can I open VS2017 with a different user than the one placed in the installation?
Are you using Visual Studio Pro? If yes, there is no need to connect with your Microsoft account in Visual Studio, it allows you to use all the features of VS without the need for authentication.…
-
1
votes2
answers351
viewsA: Apply between in an hql in c#
You can use the expression "Where" and use the Isbetween attributes to pick up a result within an estimated date. Where(r => r.data.IsBetween(dataInicio).And(dataFim)).List();…