Posts by Leandrovboas • 91 points
4 posts
-
3
votes0
answers901
viewsQ: Compiler crash with error code 255. bin Roslyn csc.exe
Build Error Description: Error when compiling a resource needed to meet this request. Examine the specific details of the error and modify the source code appropriately. Compiler Error Message:…
-
3
votes2
answers116
viewsA: How to create a template with just a few table fields?
The easiest way I found to solve this problem was by creating a view and configuring via Fluent Api that my entity relies on this view and not on the table itself. In the configuration in the table…
-
0
votes3
answers4171
viewsA: How to transform data into array with JSON?
You can do this conversion in the web layer, as presented by user3120449, as do in the backend depending on the language used, in . NET we have the class Javascriptserializer that performs the work.…
-
3
votes2
answers116
viewsQ: How to create a template with just a few table fields?
I have some tables with several fields. For example, the table (X) has some 20 fields of which I will only use 2 or 3. In this situation I have to create the templates with all fields and ignore the…