I'm using ExecuteSprocAccessor to retrieve data , it is working fine when returning a single datatable i.e I can convert in to my custom IEnumerable object ExecuteSprocAccessor but my SP returns multiple tables how to collect that ?? Is it possible to return multiple tables?? (as we do using ExecuteDataSet)
How to use ExecuteSprocAccessor of Enterprise Library Data Access Application Block to return multiple Tables?
456 Views Asked by sudhir At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in ENTERPRISE-LIBRARY
- Enterprise Library 6 - dynamically change log file name
- How to merge .net custom config sections for different environments
- The type or namespace name 'Practices' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
- VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products
- Do we need to close DbCommand in enterprise library 4.1?
- Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or
- EnterpriseLibrary dbCommand.ExecuteScalarAsync is error :Invalid operation. The connection is closed
- Change Enterprise Library configuration midway in a program
- Enterprise Library TraceListener to display logging messages inside app
- Azure Web Role with Transient Fault Handling Block exception: The path is too long after being fully qualified
- Enterprise Library DAAB 6 and ODP.NET - Connection string for the default database 'XXX' does not exist
- Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. Enterprise Library
- Enterprise Library issue
- Enterprise library logging Database trace listener with custom parameter input
- Change name of source in Enterprise Library Logging
Related Questions in ENTERPRISE-LIBRARY-5
- Is it possible to use dataBase.executeNonQuery and use a return value from a stored proc?
- Change Enterprise Library configuration midway in a program
- Enterprise Library 6.0 - exceptional handling block-The configuration section for Exception Handling cannot be found in the configuration source
- Security EnterpriseLibrary Logging Block using IIS
- Microsoft Enterprise Library Logging Application Block Formatting Incorrectly
- Can IsLoggingEnabled() change at runtime?
- When to use ExternallyControlledLifetimeManager?
- Enterprise Lib 5.0 not working on Production (Windows Server 2008R2)
- The type Database cannot be constructed. You must configure the container to supply this value (EntLib 5 + ODP.NET)
- Why Enterprise Library does not throw FaultException in WCF
- Enterprise Library cast exception in web application
- Comma Separated String from a DataReader Column
- Enterprise Logging not translating environment variables in XML Trace Listener fileName specification
- How to manage logs' preservation period using RollingFlatFileTraceListener on Enterprise Library Logging Application Block?
- Enterprise Library Logging Extended Properties Fails on Server
Related Questions in DATA-ACCESS-APP-BLOCK
- Why is a call to DatabaseInstance.ExecuteSprocAccessor<T>(...) taking so long for such a simple query?
- Retrieving SQL Server database schema and objects and reflect in a .Net application
- Configuring Enterprise Library 5.0 Data Access Application Block
- How to use ExecuteSprocAccessor of Enterprise Library Data Access Application Block to return multiple Tables?
- How to Populate a dropdown using Enterprise Library 5.0
- .Net Enterprise Library DAAB - Using Accessors to get Stored Proc Output params and Return values
- Using "LINQ to SQL" and "WCF Data Services" on top of Data Access Application Block
- AppBlock blocks AppBlock
- How to ensure thread safety when using Enterprise Library's Data Acces
- Data Access Application Block Configaration settings
- Moq in Microsoft Data Access Application Block
- Database.ExecuteSprocAccessor() not mapping blob data correctly
- Parameter discovery is not supported for connections using GenericDatabase.
- How to make app lock app in android?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The following works:
Make sure you have "MultipleActiveResultSets" enabled in your connection string.