Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public List<DBSequence> GetAllPotentialSequences(
	Project containingProject
)

Parameters

containingProject
Type: SD.LLBLGen.Pro.ApplicationCore.ProjectClassesProject
The containing project.

Return Value

Type: ListDBSequence
list of all sequences usable for the mapping as it is currently defined.
Remarks
Call this method again if the target changes.
See Also