OdataToEntity 2.7.0
See the version list below for details.
dotnet add package OdataToEntity --version 2.7.0
NuGet\Install-Package OdataToEntity -Version 2.7.0
<PackageReference Include="OdataToEntity" Version="2.7.0" />
paket add OdataToEntity --version 2.7.0
#r "nuget: OdataToEntity, 2.7.0"
// Install OdataToEntity as a Cake Addin #addin nuget:?package=OdataToEntity&version=2.7.0 // Install OdataToEntity as a Cake Tool #tool nuget:?package=OdataToEntity&version=2.7.0
OdataToEntity
OData .net core
This library provides a simple approach to creating OData service from ORM data context. This translates the OData query into an expression tree and passes it to the ORM framework. Supported ORM: Entity Framework 6, Entity Framework Core, Linq2Db
public sealed class OrderContext : DbContext
{
public DbSet<Customer> Customers { get; set; }
public DbSet<Order> Orders { get; set; }
public IEnumerable<Order> GetOrders(int? id, String name, OrderStatus? status) => throw new NotImplementedException();
}
Build OData EdmModel
Buid from entity classes marked data annotation attribute, the general case for all providers
//Create adapter data access, where OrderContext your DbContext
var dataAdapter = new OeEfCoreDataAdapter<Model.OrderContext>();
//Build OData Edm Model
EdmModel edmModel = dataAdapter.BuildEdmModel();
Build from the Entity Framework Core where the data context uses the "Fluent API" (without using attributes)
//Create adapter data access, where OrderContext your DbContext
var dataAdapter = new OeEfCoreDataAdapter<Model.OrderContext>();
//Build OData Edm Model
EdmModel edmModel = dataAdapter.BuildEdmModelFromEfCoreModel();
Build from the Entity Framework 6 where the data context uses the "Fluent API" (without using attributes)
//Create adapter data access, where OrderEf6Context your DbContext
var dataAdapter = new OeEf6DataAdapter<OrderEf6Context>();
//Build OData Edm Model
EdmModel edmModel = dataAdapter.BuildEdmModelFromEf6Model();
Build from multiple data contexts
//Create referenced data adapter
var refDataAdapter = new OeEfCoreDataAdapter<Model.Order2Context>();
//Build referenced Edm Model
EdmModel refModel = refDataAdapter.BuildEdmModel();
//Create root data adapter
var rootDataAdapter = new OeEfCoreDataAdapter<Model.OrderContext>();
//Build root Edm Model
EdmModel rootModel = rootDataAdapter.BuildEdmModel(refModel);
Sample OData query
By default used cached queries parsed to expression tree, which on existing tests allows you to increase the performance up to three times. For disable this feature, you need pass in base constructor OeDataAdapter parameter new OeQueryCache(false). The query is parameterized (i.e. constant expressions are replaced with variables) except null value, therefore for best performance must use database null semantics. For Ef Core method UseRelationalNulls class RelationalDbContextOptionsBuilder<TBuilder, TExtension>, for Ef6 property UseDatabaseNullSemantics class DbContextConfiguration.
//Create adapter data access, where OrderContext your DbContext
var dataAdapter = new OeEfCoreDataAdapter<Model.OrderContext>();
//Create query parser
var parser = new OeParser(new Uri("http://dummy"), dataAdapter.BuildEdmModel());
//Query
var uri = new Uri("http://dummy/Orders?$select=Name");
//The result of the query
var response = new MemoryStream();
//Execute query
await parser.ExecuteGetAsync(uri, OeRequestHeaders.JsonDefault, response, CancellationToken.None);
Dynamic data context
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Microsoft.OData.Core (>= 7.8.3)
- Microsoft.OData.Edm (>= 7.8.3)
- Microsoft.Spatial (>= 7.8.3)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Interactive.Async (>= 5.0.0)
- System.Text.Json (>= 5.0.1)
-
net5.0
- Microsoft.OData.Core (>= 7.8.3)
- Microsoft.OData.Edm (>= 7.8.3)
- Microsoft.Spatial (>= 7.8.3)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Interactive.Async (>= 5.0.0)
- System.Text.Json (>= 5.0.1)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on OdataToEntity:
Package | Downloads |
---|---|
OdataToEntity.EfCore
Classes bridge from ODataToEntity to Entity Framework Core. Abstraction layer access to DataContext Entity Framework Core. |
|
OdataToEntity.Ef6
Classes bridge from OdataToEntity to Entity Framework 6.3.0. Abstraction layer access to DataContext Entity Framework 6.3.0. |
|
OdataToEntity.AspNetCore
Extension for easy create Asp Mvc .Net Core service |
|
OdataToEntity.Linq2Db
Classes bridge from OdataToEntity to Linq2Db. Abstraction layer access to DataContext Entity Linq2Db |
|
OdataToEntity.GraphQL
Translate and execute GraphQL query via OData |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.8.0 | 4,968 | 7/23/2021 |
2.7.0 | 1,815 | 3/7/2021 |
2.6.1 | 2,944 | 1/9/2021 |
2.6.0 | 1,870 | 11/13/2020 |
2.5.1 | 4,437 | 8/8/2020 |
2.5.0.3 | 2,420 | 5/26/2020 |
2.5.0.2 | 2,297 | 5/24/2020 |
2.5.0.1 | 1,537 | 2/29/2020 |
2.5.0 | 2,337 | 2/26/2020 |
2.4.0 | 2,580 | 9/28/2019 |
2.3.1 | 2,729 | 6/4/2019 |
2.3.0 | 2,481 | 5/2/2019 |
2.2.0 | 2,460 | 2/3/2019 |
2.1.0 | 2,426 | 12/2/2018 |
2.0.1 | 1,930 | 10/31/2018 |
2.0.0 | 2,174 | 8/18/2018 |
2.0.0-beta1 | 1,405 | 8/15/2018 |
2.0.0-beta | 1,403 | 8/12/2018 |
1.6.2 | 2,516 | 7/17/2018 |
1.6.1 | 1,458 | 7/16/2018 |
1.6.0 | 2,067 | 7/15/2018 |
1.5.0 | 2,231 | 6/3/2018 |
1.4.1 | 2,081 | 4/1/2018 |
1.4.0 | 2,037 | 3/4/2018 |
1.3.0 | 3,292 | 11/5/2017 |
1.2.0 | 2,296 | 8/28/2017 |
1.1.1 | 1,951 | 8/1/2017 |
1.1.0 | 1,614 | 7/14/2017 |
1.0.0.1 | 2,842 | 11/23/2016 |
1.0.0 | 2,259 | 11/18/2016 |