ProjectCreateNewEntityDefinitionsFromRawDefinitions Method  | 
 
            Creates new entity definitions from the raw entity definitions specified, and adds them to the project. The list of newly created entities is returned
            to the caller.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic List<EntityDefinition> CreateNewEntityDefinitionsFromRawDefinitions(
	List<RawElementDefinition> rawEntityDefinitions
)
Public Function CreateNewEntityDefinitionsFromRawDefinitions ( 
	rawEntityDefinitions As List(Of RawElementDefinition)
) As List(Of EntityDefinition)
Parameters
- rawEntityDefinitions
 - Type: System.Collections.GenericListRawElementDefinition
The raw entity definitions. 
Return Value
Type: 
ListEntityDefinitionlist of newly created entities
RemarksTo be able to undo all creations in 1 go, call this routine from a command.
See Also