Posts by João Vitor • 45 points
4 posts
-
0
votes1
answer389
viewsQ: Android - org.json.Jsonexception No Value for
While running the application I received a Jsonexception No Value for error { "time": "05:07:18 AM", "milliseconds_since_epoch": 1504588038515, "date": "09-05-2017" } I know there are many errors…
-
0
votes0
answers141
viewsQ: Is there a tool to test black box in C#?
I know that Java has the Sikuli IDE. C# has a similar tool?
-
2
votes1
answer307
viewsQ: Why in set methods in C++ do I have to use the parameter as a reference?
I took this class Pessoa as an example: public class Pessoa{ private: string nome; public: string getNome(); void setNome(const string &nome); }; My question is: why should I use a parameter by…
-
1
votes1
answer131
viewsQ: Customer entity type is not part of the model for the current context
I’m trying to reproduce this example of Entityframework with default repository, as follows the link: https://msdn.microsoft.com/pt-br/library/dn630213.aspx But it is giving the error described in…