Method CrossJoin
| Improve this Doc View SourceCrossJoin<T>(DbSet<T>, out T)
Constructs SQL CROSS JOIN.
Declaration
public DbQueryBuilder CrossJoin<T>(DbSet<T> dbSet, out T _)
where T : class, IEntity, new()
Parameters
| Type | Name | Description |
|---|---|---|
| DbSet<T> | dbSet | The target DbSet. |
| T | _ | The entity object of the target DbSet for further SQL construction. |
Returns
| Type | Description |
|---|---|
| DbQueryBuilder | This query builder for fluent coding. |
Type Parameters
| Name | Description |
|---|---|
| T | Entity type of the target DbSet. |