Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public IEnumerable<List<GroupableModelElementMapping>> GetAllDifferentMappingCombinationsOnResultsets()

Return Value

Type: IEnumerableListGroupableModelElementMapping
A list with for each resultset, a mapped element which is mapped on the resultset at that index.
See Also