Exposes a BrightstarEntity Context and OData Data Service.

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

Syntax

C#
public abstract class EntityDataService<T> : DataService<T>, 
	IServiceProvider
where T : BrightstarEntityContext
Visual Basic
Public MustInherit Class EntityDataService(Of T As BrightstarEntityContext)
	Inherits DataService(Of T)
	Implements IServiceProvider
Visual C++
generic<typename T>
where T : BrightstarEntityContext
public ref class EntityDataService abstract : public DataService<T>, 
	IServiceProvider
F#
[<AbstractClassAttribute>]
type EntityDataService<'T when 'T : BrightstarEntityContext> =  
    class
        inherit DataService<'T>
        interface IServiceProvider
    end

Type Parameters

T
The Brightstar Entity Context Type

Inheritance Hierarchy

System..::..Object
  System.Data.Services..::..DataService<(Of <(<'T>)>)>
    BrightstarDB.OData..::..EntityDataService<(Of <(<'T>)>)>

See Also