OR-M_DataEntities
3.0.4
dotnet add package OR-M_DataEntities --version 3.0.4
NuGet\Install-Package OR-M_DataEntities -Version 3.0.4
<PackageReference Include="OR-M_DataEntities" Version="3.0.4" />
paket add OR-M_DataEntities --version 3.0.4
#r "nuget: OR-M_DataEntities, 3.0.4"
// Install OR-M_DataEntities as a Cake Addin #addin nuget:?package=OR-M_DataEntities&version=3.0.4 // Install OR-M_DataEntities as a Cake Tool #tool nuget:?package=OR-M_DataEntities&version=3.0.4
This solution is a micro Object-Relational Mapper aimed at speed. OR-M Data Entities does less "micro managing" of code, which makes the framework much faster.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.4 | 1,864 | 8/23/2016 |
3.0.3 | 1,280 | 7/28/2016 |
3.0.2 | 1,122 | 4/18/2016 |
3.0.1 | 1,037 | 4/11/2016 |
3.0.0 | 1,126 | 4/7/2016 |
2.3.4 | 1,441 | 12/16/2015 |
2.3.3 | 1,499 | 11/16/2015 |
2.3.2 | 1,420 | 10/23/2015 |
2.3.1 | 1,287 | 10/5/2015 |
2.3.0 | 1,184 | 9/28/2015 |
2.2.0 | 1,161 | 9/9/2015 |
2.1.6 | 1,135 | 9/4/2015 |
2.1.5 | 1,122 | 8/28/2015 |
2.1.4 | 1,124 | 8/27/2015 |
2.1.3 | 1,621 | 8/12/2015 |
2.1.2 | 1,387 | 8/3/2015 |
2.1.1 | 1,192 | 7/21/2015 |
2.1.0 | 1,145 | 7/9/2015 |
2.0.3 | 1,178 | 7/6/2015 |
2.0.2 | 1,228 | 7/1/2015 |
2.0.1 | 1,278 | 6/24/2015 |
2.0.0 | 1,512 | 6/24/2015 |
1.1.0 | 1,808 | 3/9/2015 |
1.0.0 | 1,486 | 3/5/2015 |
Fixed how inserts work with a 1-1 foreign key. Before, the foreign key entity entity had to be set along with the foreign key Id. Now only for foreign key Id has to be set.
Example:
public class PhoneNumber
{
public int Id {get;set;}
public int PhoneTypeId {get;set;}
public PhoneType PhoneType {get;set;}
}
Only PhoneTypeId needs to be set, PhoneType can be null