CosmicWorks is an open source set of tools and libraries to generate data quickly for your proof of concept or sample applications.
This library generates fictious data used in the CosmicWorks sample dataset.
💡 The CosmicWorks sample data is partially derived from AdventureWorksLT.
using Microsoft.Samples.Cosmos.NoSQL.CosmicWorks.Data;
using Microsoft.Samples.Cosmos.NoSQL.CosmicWorks.Models;
// Generate employees
IReadOnlyList<Product> products = await new ProductsDataSource().GetItemsAsync(
count: 1000
);
// Generate products
IReadOnlyList<Employee> employees = await new EmployeesDataSource().GetItemsAsync(
count: 200
);| Description | |
|---|---|
| Employees | Fictituous employee records based on a diverse set of names. |
| Products | Fictituous product records based on https://adventure-works.com. |