QueryFactoryCoreCreateTEntity Method (String) | 
 Creates a new EntityQuery for the entity of the type specified with the alias specified as the alias set.
 
    Namespace: 
   SD.LLBLGen.Pro.QuerySpec
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.7.0.0 (5.7.0)
Syntaxpublic EntityQuery<TEntity> Create<TEntity>(
	string alias
)
where TEntity : IEntityCore
Public Function Create(Of TEntity As IEntityCore) ( 
	alias As String
) As EntityQuery(Of TEntity)
Parameters
- alias
 - Type: SystemString
The alias. 
Type Parameters
- TEntity
 - The type of the entity to produce the query for.
 
Return Value
Type: 
EntityQueryTEntityready to use EntityQuery instance
See Also