Click or drag to resize
StoredProcResultsetMappingInfo Class
Class which contains information about the mapping of a stored procedure resultset. This info can be used to generate output for elements mapped onto resultsets of stored procedures.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.GeneratorCoreStoredProcResultsetMappingInfo

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 class StoredProcResultsetMappingInfo

The StoredProcResultsetMappingInfo type exposes the following members.

Constructors
  NameDescription
Public methodStoredProcResultsetMappingInfo
Initializes a new instance of the StoredProcResultsetMappingInfo class.
Top
Properties
  NameDescription
Public propertyMappingsPerResultset
Gets the mappings per resultset of the stored procedure.
Public propertyStoredProcedureDefinition
Gets the stored procedure definition owning the resultsets mapped.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAllDifferentMappingCombinationsOnResultsets
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].
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
In the current version, only typedviews can be mapped onto a resultset.
See Also