EntityMappingGetAllPotentialSequences Method |
Gets all potential sequences. The schema sequences are sorted on Name if they're in the same schema as the target, otherwise on FullNameWithCatalog,
and present after the first entry which is 'null' and the system sequences which are present after that. The schema sequences from the schema of the target
are added first, and the ones from other catalogs/schemas are added after that.
Namespace:
SD.LLBLGen.Pro.ApplicationCore.Mapping
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntax public List<DBSequence> GetAllPotentialSequences(
Project containingProject
)
Public Function GetAllPotentialSequences (
containingProject As Project
) As List(Of DBSequence)
Parameters
- containingProject
- Type: SD.LLBLGen.Pro.ApplicationCore.ProjectClassesProject
The containing project.
Return Value
Type:
ListDBSequencelist of all sequences usable for the mapping as it is currently defined.
Remarks Call this method again if the target changes.
See Also