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.5.0.0 (5.5.18.1019)
Syntax public 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