Rystem.RepositoryFramework.Infrastructure.InMemory 10.0.1

dotnet add package Rystem.RepositoryFramework.Infrastructure.InMemory --version 10.0.1
                    
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.InMemory -Version 10.0.1
                    
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="Rystem.RepositoryFramework.Infrastructure.InMemory" Version="10.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Infrastructure.InMemory" Version="10.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Infrastructure.InMemory" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rystem.RepositoryFramework.Infrastructure.InMemory --version 10.0.1
                    
#r "nuget: Rystem.RepositoryFramework.Infrastructure.InMemory, 10.0.1"
                    
#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.
#:package Rystem.RepositoryFramework.Infrastructure.InMemory@10.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rystem.RepositoryFramework.Infrastructure.InMemory&version=10.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.InMemory&version=10.0.1
                    
Install as a Cake Tool

What is Rystem?

In memory integration by default

With this library you can add in memory integration with the chance to create random data with random values, random based on regular expressions and delegated methods

How to populate with random data?

Simple random (example)

Populate your in memory storage with 120 users

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRepository<IperUser, string>(repositoryBuilder =>
{
    repositoryBuilder
        .WithInMemory(inMemoryBuilder =>
        {
            inMemoryBuilder
                .PopulateWithRandomData(120, 5)
                .WithPattern(x => x.Value.Email, @"[a-z]{5,10}@gmail\.com");
        });
    repositoryBuilder
        .AddBusiness()
            .AddBusinessBeforeInsert<IperRepositoryBeforeInsertBusiness>();
    repositoryBuilder
        .Translate<IperUser>();
});

and in app after build during startup of your application

var app = builder.Build();
await app.Services.WarmUpAsync();
Simple random with regex (example)

Populate your in memory storage with 100 users and property Email with a random regex @"[a-z]{4,10}@gmail.com"

.AddRepository<User, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100)
                .WithPattern(x => x.Email, @"[a-z]{4,10}@gmail\.com")
        });
});

and in app after build during startup of your application

var app = builder.Build();
await app.Services.WarmUpAsync();
Where can I use the regex pattern?

You can use regex pattern on all primitives type and most used structs.

Complete list:
int, uint, byte, sbyte, short, ushort, long, ulong, nint, nuint, float, double, decimal, bool, char, Guid, DateTime, TimeSpan, Range, string, int?, uint?, byte?, sbyte?, short?, ushort?, long?, ulong?, nint?, nuint?, float?, double?, decimal?, bool?, char?, Guid?, DateTime?, TimeSpan?, Range?, string?

You can use the pattern in Class, IEnumerable, IDictionary, or Array, and in everything that extends IEnumerable or IDictionary

Important!! You can override regex service in your DI

public static IServiceCollection AddRegexService<T>(
        this IServiceCollection services)
        where T : class, IRegexService
IEnumerable or Array one-dimension (example)

You have your model x (User) that has a property Groups as IEnumerable or something that extends IEnumerable, Groups is a class with a property Id as string. In the code below you are creating a list of class Groups with 8 elements in each 100 User instances, in each element of Groups you randomize based on this regex "[a-z]{4,5}". You may take care of use First() linq method to set correctly the Id property.

.AddRepository<User, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100, 8)
                .WithPattern(x => x.Groups!.First().Id, "[a-z]{4,5}");
        });
});

and in app after build during startup of your application

var app = builder.Build();
await app.Services.WarmUpAsync();
IDictionary (example)

Similar to IEnumerable population you may populate your Claims property (a dictionary) with random key but with values based on regular expression "[a-z]{4,5}". As well as IEnumerable implementation you will have 6 elements (because I choose to create 6 elements in Populate method)

.AddRepository<User, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100, 6)
                .WithPattern(x => x.Claims!.First().Value, "[a-z]{4,5}");
        });
});

and in app after build during startup of your application

var app = builder.Build();
await app.Services.WarmUpAsync();

or if you have in Value an object

AddRepository<User, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100, 6)
                .WithPattern(x => x.Claims!.First().Value.SomeProperty, "[a-z]{4,5}");
        });
});

and in app after build during startup of your application

var app = builder.Build();
await app.Services.WarmUpAsync();

Populate with delegation

Similar to regex pattern, you can use a delegation to populate something.

Dictionary (example)

Here you can see that all 6 elements in each 100 users are populated in Value with string "A"

.AddRepository<User, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100, 6)
                .WithPattern(x => x.Claims!.First().Value, () => "A");
        });
});

and in app after build during startup of your application

var app = builder.Build();
await app.Services.WarmUpAsync();

Populate with Implementation

If you have an interface or abstraction in your model, you can specify an implementation type for population. You have two different methods, with typeof

.AddRepository<PopulationTest, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100, 2)
                .WithImplementation(x => x.I, typeof(MyInnerInterfaceImplementation));
        });
});

or generics

.AddRepository<PopulationTest, string>(builder => {
    builder
        .WithInMemory(inMemoryBuilder => {
            inMemoryBuilder
                .PopulateWithRandomData(100)
                .WithImplementation<IInnerInterface, MyInnerInterfaceImplementation>(x => x.I!);
        });
});

In Memory, simulate real implementation

If you want to test with possible exceptions (for your reliability tests) and waiting time (for your load tests) you may do it with this library and in memory behavior settings.

Add random exceptions

You can set different custom exceptions and different percentage for each operation: Delete, Get, Insert, Update, Query. In the code below I'm adding three exceptions with a percentage of throwing them, they are the same for each operation. I have a 0.45% for normal Exception, 0.1% for "Big Exception" and 0.548% for "Great Exception"

.AddRepository<Car, string>(settings =>
{
    settings.WithInMemory(builder =>
    {
        var customExceptions = new List<ExceptionOdds>
        {
            new ExceptionOdds()
            {
                Exception = new Exception("Normal Exception"),
                Percentage = 10.352
            },
            new ExceptionOdds()
            {
                Exception = new Exception("Big Exception"),
                Percentage = 49.1
            },
            new ExceptionOdds()
            {
                Exception = new Exception("Great Exception"),
                Percentage = 40.548
            }
        };
        builder.Settings.AddForRepositoryPattern(new MethodBehaviorSetting
        {
            ExceptionOdds = customExceptions
        });
    });
});

Add random waiting time

You can set different range in milliseconds for each operation to simulate the await of an external integration. In the code below I'm adding a same custom range for all Repository interfaces between 1000ms and 2000ms.

.AddRepository<User, string>(builder =>
{
    builder.WithInMemory(inMemoryBuilder =>
    {
        var customRange = new Range(1000, 2000);
        inMemoryBuilder.Settings.AddForRepositoryPattern(new MethodBehaviorSetting
        {
            MillisecondsOfWait = customRange
        });
    });
});
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
10.0.1 300 11/12/2025
9.1.3 251 9/2/2025
9.1.2 764,438 5/29/2025
9.1.1 97,810 5/2/2025
9.0.32 186,716 4/15/2025
9.0.31 5,833 4/2/2025
9.0.30 88,814 3/26/2025
9.0.29 9,006 3/18/2025
9.0.28 222 3/17/2025
9.0.27 244 3/16/2025
9.0.26 228 3/13/2025
9.0.25 52,110 3/9/2025
9.0.21 274 3/6/2025
9.0.20 19,535 3/6/2025
9.0.19 277 3/6/2025
9.0.18 278 3/4/2025
9.0.17 164 3/1/2025
9.0.16 167 3/1/2025
9.0.15 75,492 2/22/2025
9.0.14 22,554 2/18/2025
9.0.13 183 2/9/2025
9.0.12 217,719 1/13/2025
9.0.11 24,028 1/9/2025
9.0.10 159 1/9/2025
9.0.9 4,043 1/7/2025
9.0.8 12,544 1/6/2025
9.0.7 170 1/6/2025
9.0.4 92,293 12/23/2024
9.0.3 187 12/22/2024
9.0.2 10,730 12/21/2024
9.0.1 1,227 12/21/2024
9.0.0 173,036 11/16/2024
9.0.0-rc.1 132 10/18/2024
6.2.0 219,103 10/9/2024
6.1.1 200 10/9/2024
6.1.0 47,968 9/29/2024
6.0.24 210 9/11/2024
6.0.23 225 7/18/2024
6.0.21 222 6/18/2024
6.0.20 194 6/16/2024
6.0.19 689 6/14/2024
6.0.18 183 6/14/2024
6.0.17 187 6/14/2024
6.0.16 188 6/10/2024
6.0.15 203 6/9/2024
6.0.14 213 5/24/2024
6.0.13 206 5/23/2024
6.0.12 254 5/23/2024
6.0.11 213 5/20/2024
6.0.9 201 5/20/2024
6.0.7 195 5/18/2024
6.0.6 184 5/10/2024
6.0.5 192 5/10/2024
6.0.4 214 4/3/2024
6.0.3 244 3/25/2024
6.0.2 203 3/11/2024
6.0.0 333 11/21/2023
6.0.0-rc.6 145 10/25/2023
6.0.0-rc.5 146 10/25/2023
6.0.0-rc.4 122 10/23/2023
6.0.0-rc.3 108 10/19/2023
6.0.0-rc.2 109 10/18/2023
6.0.0-rc.1 105 10/16/2023
5.0.20 255 9/25/2023
5.0.19 281 9/10/2023
5.0.18 263 9/6/2023
5.0.17 215 9/6/2023
5.0.16 208 9/5/2023
5.0.15 227 9/5/2023
5.0.14 249 9/5/2023
5.0.13 228 9/1/2023
5.0.12 204 8/31/2023
5.0.11 209 8/30/2023
5.0.10 223 8/29/2023
5.0.9 227 8/24/2023
5.0.8 216 8/24/2023
5.0.7 233 8/23/2023
5.0.6 225 8/21/2023
5.0.5 224 8/21/2023
5.0.4 276 8/16/2023
5.0.3 254 8/2/2023
5.0.2 245 8/2/2023
5.0.1 243 8/1/2023
5.0.0 262 7/31/2023
4.1.26 268 7/20/2023
4.1.25 271 7/16/2023
4.1.24 313 6/13/2023
4.1.23 278 6/13/2023
4.1.22 265 5/30/2023
4.1.21 291 5/20/2023
4.1.20 315,289 4/19/2023
4.1.19 95,161 3/20/2023
4.1.18 402 3/20/2023
4.1.17 342 3/16/2023
4.1.16 376 3/16/2023
4.1.15 385 3/15/2023
4.1.14 940 3/9/2023
4.1.13 399 3/7/2023
4.1.12 415 2/10/2023
4.1.11 488 1/26/2023
4.1.10 476 1/22/2023
4.1.9 458 1/20/2023
4.1.8 446 1/18/2023
4.1.7 624 1/18/2023
4.1.6 454 1/17/2023
4.1.1 497 1/4/2023
4.1.0 520 1/1/2023
3.1.5 444 12/21/2022
3.1.3 462 12/12/2022
3.1.2 469 12/7/2022
3.1.1 448 12/7/2022
3.1.0 511 12/2/2022
3.0.29 510 12/1/2022
3.0.28 456 12/1/2022
3.0.27 512 11/23/2022
3.0.25 474 11/23/2022
3.0.24 505 11/18/2022
3.0.23 474 11/18/2022
3.0.22 494 11/15/2022
3.0.21 489 11/14/2022
3.0.20 533 11/13/2022
3.0.19 528 11/2/2022
3.0.18 525 11/2/2022
3.0.17 572 10/29/2022
3.0.16 525 10/29/2022
3.0.15 547 10/29/2022
3.0.14 583 10/24/2022
3.0.13 552 10/24/2022
3.0.12 557 10/17/2022
3.0.11 591 10/10/2022
3.0.10 568 10/6/2022
3.0.9 566 10/6/2022
3.0.8 574 10/6/2022
3.0.7 589 10/6/2022
3.0.6 542 10/5/2022
3.0.5 571 10/5/2022
3.0.4 586 10/5/2022
3.0.3 573 10/3/2022
3.0.2 558 9/30/2022
3.0.1 571 9/29/2022
2.0.17 603 9/29/2022
2.0.16 612 9/27/2022
2.0.15 645 9/27/2022
2.0.14 612 9/26/2022
2.0.13 618 9/26/2022
2.0.12 621 9/26/2022
2.0.11 609 9/25/2022
2.0.10 640 9/25/2022
2.0.9 614 9/22/2022
2.0.8 615 9/22/2022
2.0.6 600 9/20/2022
2.0.5 609 9/20/2022
2.0.4 606 9/20/2022
2.0.2 631 9/20/2022
2.0.1 681 9/13/2022
2.0.0 633 8/19/2022
1.1.24 626 7/30/2022
1.1.23 603 7/29/2022
1.1.22 628 7/29/2022
1.1.21 923 7/29/2022
1.1.20 637 7/29/2022
1.1.19 705 7/27/2022
1.1.17 609 7/27/2022
1.1.16 651 7/26/2022
1.1.15 625 7/25/2022
1.1.14 628 7/25/2022
1.1.13 638 7/22/2022
1.1.12 632 7/19/2022
1.1.11 680 7/19/2022
1.1.10 630 7/19/2022
1.1.9 660 7/19/2022
1.1.8 659 7/18/2022
1.1.7 631 7/18/2022
1.1.6 633 7/18/2022
1.1.5 639 7/17/2022
1.1.4 637 7/17/2022
1.1.3 643 7/17/2022
1.1.2 655 7/17/2022
1.1.0 658 7/17/2022
1.0.2 646 7/15/2022
1.0.1 628 7/15/2022
1.0.0 647 7/8/2022
0.10.7 646 7/7/2022
0.10.2 692 7/2/2022
0.10.1 631 7/1/2022
0.10.0 652 7/1/2022
0.9.12 644 6/29/2022
0.9.11 703 6/20/2022
0.9.10 644 6/20/2022
0.9.9 638 6/11/2022
0.9.7 686 6/9/2022
0.9.6 662 6/5/2022
0.9.5 649 6/3/2022
0.9.4 640 6/3/2022
0.9.3 602 6/3/2022
0.9.2 621 5/31/2022
0.9.1 625 5/31/2022
0.9.0 638 5/31/2022