Posts by Renatto Machado • 715 points
16 posts
-
3
votes1
answer3537
viewsQ: Dynamic mapping error: Missing type map Configuration or Unsupported Mapping
I have a data dictionary something like this: public class Colunas { public string ColunaOrigem {get; set;} public string ColunaDestino {get; set;} public DbType Tipo {get; set;} } public class…
-
2
votes2
answers582
viewsA: Appear div to close only after clicking iframe
Yes @thecreator is possible. For this you can use jQuery. I think this tutorial can help you. See also this reply which deals with the same issue. Updating It would be something like this:…
-
0
votes1
answer785
viewsA: How to create a search filter for a Three-Dimensional String?
Jeiferson, we call that a matrix. A vector of vectors. Three-dimensional would be String[][][]. But, answering your question, it is possible yes. Just go through the matrix in search of what you…
javaanswered Renatto Machado 715 -
2
votes2
answers8286
viewsA: No constructor without parameters has been defined for this object
Solution As @iuristona had said, the problem was that my Ioc container was failing to resolve the dependency on my Controller’s constructor. Investigating I discovered the problem, follow the code…
-
1
votes2
answers8286
viewsQ: No constructor without parameters has been defined for this object
I am building an ASP.NET MVC5 application using DDD and have separated my Ioc layer from my web application. In my controllers I have constructs with parameter to receive an instance of my service…
-
2
votes1
answer119
viewsA: Error writing to Mongodb using C#Parallelism
Solution The problem was solved using the techniques of Threadsafe, more specifically using lock. Example: object syncLock = new object(); Parallel.Foreach(words, word => { lock(syncLock) { //All…
-
2
votes1
answer119
viewsQ: Error writing to Mongodb using C#Parallelism
I have a collection on Mongo that has subdocuments, so I read xml files and write them to Mongodb. Each xml file is a document in Mongo. My classes public class Cabecalho { public Cabecalho() {…
-
6
votes3
answers2508
viewsA: How to work with OCR to recognize photographs
The complete solution can be seen in this video. For what I need it is necessary to use Emgucv, Opencv and Tesseract. So I can do the reading of vehicular plates.…
-
7
votes3
answers2508
viewsQ: How to work with OCR to recognize photographs
I am currently working on my Course Completion Work and the theme involves OCR. I did some research and found the Tesseract, I also found libraries in Nuget for him (I’m using C#). The problem is…
-
6
votes4
answers9242
viewsA: Datetime field error message
Four solutions: Removing the Validationmessagefor In your view, just below yours @Html.EditorFor(...) There must be a code like this: @Html.ValidationMessageFor(model => model.DataInicio) It is…
-
5
votes2
answers1071
viewsQ: How to know the name of the Actionresult that called the view?
I wonder if it’s possible to get the name of ActionResult who called the View. I know that normally View has the same name as ActionResult, but in my case, I have a single view for two ActionResult…
-
1
votes1
answer381
viewsA: JSON Structure for Highchart Line
I’m not sure I really understand what you want in response. If you’re talking about the JSON format, you can do something similar to the below: {"Result":[["Maio", "Junho", "Julho"], [20, 30, 15]]}…
-
8
votes1
answer1651
viewsA: Error opening new Activity
Try changing the line: Intent itAjuda = new Intent("com.emanuel.teste.ajuda"); for Intent itAjuda = new Intent("com.emanuel.teste.AJUDA"); OR so call it: Intent openStartingPoint = new…
-
6
votes1
answer7747
viewsQ: How to resolve the medium trust issue in Asp.net
I’m developing a website on Asp.Net MVC5. When posting the site on Locaweb and trying to log in with my user I received the message: Attempt by security transparent method…
-
0
votes2
answers526
viewsQ: Problem with Nsdate
I have an Imobject class, in it I have an Nsdate *Startdate field. I fill this field with a database return: (IMMutableArrayIMTable*)[databaseTemp retrieve: @"select * from table" withParams:nil…
-
5
votes1
answer2001
viewsQ: How to List Users with Asp.Net MVC 5
I am using Visual Studio 2013, I am creating a new Asp.NET Web Application project using MVC and authentication by "Individual User Account". I would like to know how to list all registered users.…