Share via


ETag<TEntity>.ApplyTo Method

Definition

Overloads

ApplyTo(IQueryable)

Apply the ETag to the given IQueryable.

ApplyTo(IQueryable<TEntity>)

Apply the ETag to the given IQueryable<T>.

ApplyTo(IQueryable)

Apply the ETag to the given IQueryable.

public override System.Linq.IQueryable ApplyTo (System.Linq.IQueryable query);
override this.ApplyTo : System.Linq.IQueryable -> System.Linq.IQueryable
Public Overrides Function ApplyTo (query As IQueryable) As IQueryable

Parameters

query
IQueryable

The original IQueryable.

Returns

The new IQueryable after the ETag has been applied to.

Applies to

ApplyTo(IQueryable<TEntity>)

Apply the ETag to the given IQueryable<T>.

public System.Linq.IQueryable<TEntity> ApplyTo (System.Linq.IQueryable<TEntity> query);
override this.ApplyTo : System.Linq.IQueryable<'Entity> -> System.Linq.IQueryable<'Entity>
Public Function ApplyTo (query As IQueryable(Of TEntity)) As IQueryable(Of TEntity)

Parameters

query
IQueryable<TEntity>

The original IQueryable<T>.

Returns

IQueryable<TEntity>

The new IQueryable<T> after the ETag has been applied.

Applies to