Adr.MyORMInMemory 3.0.0

dotnet add package Adr.MyORMInMemory --version 3.0.0
NuGet\Install-Package Adr.MyORMInMemory -Version 3.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Adr.MyORMInMemory" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Adr.MyORMInMemory --version 3.0.0
#r "nuget: Adr.MyORMInMemory, 3.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Adr.MyORMInMemory as a Cake Addin
#addin nuget:?package=Adr.MyORMInMemory&version=3.0.0

// Install Adr.MyORMInMemory as a Cake Tool
#tool nuget:?package=Adr.MyORMInMemory&version=3.0.0

MyORMInMemory

MyORMInMemory is a implementation of MyORM in memory for unit tests of functions that use another implementations.

Installation

.NET CLI

dotnet add package Adr.MyORMInMemory --version 3.0.0

Nuget package manager

PM> Install-Package Adr.MyORMInMemory -Version 3.0.0

packageReference

<PackageReference Include="Adr.MyORMInMemory" Version="3.0.0" />

Usage

Create a instance of InMemoryContext:

public class Context : InMemoryContext
    {
        
        public Context() : base() { }

        public InMemoryCollection<Item> Items { get; set; }
        public InMemoryCollection<Order> Orders { get; set; }
    }

Using a instance of InMemoryContext:


public class OrderService 
    {
        Data.Context _context;
        public OrderService(Data.Context context)
        {
            _context = context;
        }

        public async Task Add(Order order)
        {
            await _context.Orders.AddAsync(order);
        }

        public async Task<IEnumerable<Order>> GetAll()
        {                        

            return await _context.Orders.OrderBy(d => d.Id).Join(d => d.Item).ToListAsync();
        }

        public async Task<Order?> Find(long id)
        {
            return await _context.Orders.Where(d => d.Id == id).FirstAsync();

        }

        public async Task<IEnumerable<Order>> GetFirst10()
        {
            return await _context.Orders.Take(10);

        }
}

Sample of DI and IS, so we can change database easily:

public class OrderService 
    {
        MyORM.Interfaces.IDBContext _context;

        
        public OrderService(MyORM.Interfaces.IDBContext context)
        {
            _context = context;
        }

        public async Task<IEnumerable<Order>> GetAll()
        {
            return await _context.Collection<Order>().OrderBy(d => d.Id).Join(d => d.Item).ToListAsync();
        }
}

For web



builder.Services.AddScoped<MyORM.Interfaces.IDBContext, Data.Context>();

new Data.Context(pgConnBuilder).UpdateDataBase();

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0 271 9/14/2022

3.0