Posts by António Garcez • 41 points
6 posts
-
1
votes0
answers56
viewsQ: Error to map in Entityframework
Good, I’m trying to map a database using Entityframework-Reverse-POCO-Code-First-Generator and one of my views has the following mapping: public VIEW_CODE_NAV_CustomerLedgerEntryMapping(string…
-
0
votes0
answers53
viewsQ: EF - A Member of the type, 'X', does not have a corresponding column in the data Reader with the same name
Good, I am using Entityframework to pass the result of this query: SELECT a.* FROM [Logística$Sales Invoice Header] AS a INNER JOIN [Logística$Sales Invoice Line] AS b ON a.No_ = b.[Document No_]…
-
1
votes2
answers408
viewsA: C# returns an HTML string
I already found a solution, I had to replace the C#: @{ string cost = (Model.KnowAcquisition.Cost.HasValue ? Model.KnowAcquisition.Cost.Value.ToString("n2", CultureInfo.CurrentCulture) :…
-
0
votes2
answers408
viewsQ: C# returns an HTML string
Good, I use the following code to convert a numeric value according to the user culture: value="@(Model.KnowAcquisition.Cost.HasValue ? Model.KnowAcquisition.Cost.Value.ToString("n2",…
-
2
votes0
answers41
viewsQ: Have identifier in a table row
Hello, I’m developing a web application that contains a list of various elements. My idea will be that after a click on one of the elements, it opens a new page with the details of the element…
-
0
votes0
answers16
viewsQ: Avoid changing the information in HTML
Hello, I am developing a web application that, on certain pages, has a table with information and I have an event (in jQuery) that is on the table lines that when clicked pass to a detail page. My…