StoredProcResultsetMappingInfoGetAllDifferentMappingCombinationsOnResultsets Method |
Gets all different mapping combinations on resultsets. A resultset can have multiple mapped elements as it can be a target of multiple typed views
for example. If a stored procedure has multiple resultsets, there are multiple combinations of mapped elements possible. The method returns
one or more lists with GroupableModelElementMapping instances, one for each resultset. If resultset #1 has 1 mapped element (A) but resultset #2 has 3
mapped elements (B, C and D), this method returns 3 lists: [A, B], [A, C] and [A, D].
Namespace:
SD.LLBLGen.Pro.GeneratorCore
Assembly:
SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public IEnumerable<List<GroupableModelElementMapping>> GetAllDifferentMappingCombinationsOnResultsets()
Public Function GetAllDifferentMappingCombinationsOnResultsets As IEnumerable(Of List(Of GroupableModelElementMapping))
Return Value
Type:
IEnumerableListGroupableModelElementMappingA list with for each resultset, a mapped element which is mapped on the resultset at that index.
See Also