Class used to provide access to all domain objects of a particular type from within a domain context object

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public class BrightstarEntitySet<T> : EntityFrameworkQueryable<T>, 
	IEntitySet<T>, IQueryable<T>, IEnumerable<T>, IQueryable, IEnumerable, 
	IEntitySet
where T : class
Visual Basic
Public Class BrightstarEntitySet(Of T As Class)
	Inherits EntityFrameworkQueryable(Of T)
	Implements IEntitySet(Of T), IQueryable(Of T), 
	IEnumerable(Of T), IQueryable, IEnumerable, IEntitySet
Visual C++
generic<typename T>
where T : ref class
public ref class BrightstarEntitySet : public EntityFrameworkQueryable<T>, 
	IEntitySet<T>, IQueryable<T>, IEnumerable<T>, IQueryable, IEnumerable, 
	IEntitySet
F#
type BrightstarEntitySet<'T when 'T : not struct> =  
    class
        inherit EntityFrameworkQueryable<'T>
        interface IEntitySet<'T>
        interface IQueryable<'T>
        interface IEnumerable<'T>
        interface IQueryable
        interface IEnumerable
        interface IEntitySet
    end

Type Parameters

T
The type of domain object that this set provides access to

Inheritance Hierarchy

System..::..Object
  QueryableBase<(Of <(<'T>)>)>
    BrightstarDB.EntityFramework.Query..::..EntityFrameworkQueryable<(Of <(<'T>)>)>
      BrightstarDB.EntityFramework..::..BrightstarEntitySet<(Of <(<'T>)>)>

See Also