Posts by fernando tso • 121 points
7 posts
-
1
votes1
answer2196
viewsQ: How to call a "Stored Procedure" oracle c#
I have the following Procedure in my bank: I’m trying to call my store Procedure in the .net in this way: public int CountEvent(int resourceId, int eventCounterDefinitionId, DateTime startDate,…
-
2
votes1
answer4598
viewsQ: export oracle database 11g sqldeveloper
The point is, I have a local database, where I already have the structure and data in the respective tables that I need. I want to export this database to another machine, with exactly the same…
-
1
votes1
answer1393
viewsQ: call action method in the controller via a view script
I have an action inside my controller, to download an XML file, with the following signature. public Actionresult Export(int id){}, no understand on my page I have a button that calls a download…
-
1
votes3
answers223
viewsQ: implement Ixmlserializable interface in a class
I have a class and need to implement data serialization and deserialization in an XML structure using IXmlSerializable, for this in my class I have to implement the methods, GetSchema(),…
-
3
votes2
answers172
viewsQ: serialize class item in textual documents
I would like to take the elements of my products class and record a txt file as would my Serialization method. class Program { static void Main(string[] args) { var products = new…
c#asked fernando tso 121 -
0
votes0
answers44
viewsQ: Javascript code processing for c# (treeSample)
I’m trying to pass a code running in javascript, for c# I’m having difficulty with the syntax, the code transforming the list of data into a tree structure. someone could help? // Array de dados. A…
-
3
votes1
answer76
viewsQ: Function that returns other functions
I have three methods being called separately on controller with JSON. Each one of them returns to me Id Name. I need to call these three methods in the same function in the controller. How can I…