i need return DataTable
See original GitHub issuehi
how can use DataTable to call store for store procedure not like #1645
public static IEnumerable<DataTable> spReportpAGEvISITcOUNT(this db dataConnection)
{
return dataConnection.QueryProc<DataTable>("spName");
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
c# - Method returning DataTable with using
Yes, the DataTable will be disposed when the code exit the using scope. You should move the using to your main() public static...
Read more >RETURN DEF — DataTables forums
I think you will need to make sure to return {"data":[]} from your custom delete button for the row to be removed from...
Read more >Function Returns DataTable Using C# - TutorialsPanel
Below is a function that returns a DataTable using in C#. DataTables are derived from the namespace System.Data.
Read more >Method that returns Datatable object passing sql and ...
Generic method to return data from database: With this method we fill a DataTable object with the result of a sql query, and...
Read more >return a datatable from a function in C# | Experts Exchange
I want return a datatable from a function, but it has error. Table1 not returned. private static DataTable GetDataTable(Guid recordId)
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Everything can be found in StackOverflow and analyzing linq2db extension methods:
Hi guys @sdanyliv is this suitable for TVP output returned values? Would you mind to show an example about how to retrieve data from an executed stored procedure returning an TVP output parameter ?