DataFac.Storage.Testing 0.64.17

There is a newer version of this package available.
See the version list below for details.
dotnet add package DataFac.Storage.Testing --version 0.64.17
                    
NuGet\Install-Package DataFac.Storage.Testing -Version 0.64.17
                    
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="DataFac.Storage.Testing" Version="0.64.17" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DataFac.Storage.Testing" Version="0.64.17" />
                    
Directory.Packages.props
<PackageReference Include="DataFac.Storage.Testing" />
                    
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 DataFac.Storage.Testing --version 0.64.17
                    
#r "nuget: DataFac.Storage.Testing, 0.64.17"
                    
#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.
#addin nuget:?package=DataFac.Storage.Testing&version=0.64.17
                    
Install as a Cake Addin
#tool nuget:?package=DataFac.Storage.Testing&version=0.64.17
                    
Install as a Cake Tool

Build-Deploy CodeQL

Warning: This is pre-release software under active development. Breaking changes may occur.

DTOMaker

This repo includes model-driven compile-time source generators for quickly creating DTOs (Data Transport Objects) supporting the following serialization schemes:

  • MessagePack
  • MemBlocks
  • JSON (NewtonSoft)

and related POCOs (Plain Old C# Objects).

Workflow

---
title: Workflow
---
flowchart LR
    def(Define models e.g. IMyDTO.cs)
    ref1(Reference DTOMaker.Models.*)
    ref2(Reference DTOMaker.Runtime.*)
    ref3(Reference one or more source generators e.g. DTOMaker.MessagePack)
    bld(VS/Code/MSBuild)
    pkg(Assembly)
    def-->ref1
    def-->ref2
    def-->ref3
    ref1-->bld
    ref2-->bld
    ref3-->bld
    bld-->pkg

Models are defined as C# interfaces with additional attributes. Here's a trivial example:

[Entity]
public interface IMyFirstDTO
{
    [Member(1)] string Name { get; }
}

If using the MessagePack source generator, the following implmentation will be generated (simplified):

[MessagePackObject]
public sealed class MyFirstDTO : IMyFirstDTO:
{
    [Key(1)] string Name { get; set; }
}

Included Packages

This repo includes the following packages:

DTOMaker.Models

Attributes for defining simple data models as interfaces in C#.

DTOMaker.MessagePack

A source generator that creates MessagePack DTOs (Data Transport Objects). See https://github.com/MessagePack-CSharp/MessagePack-CSharp.

DTOMaker.Models.MessagePack

Additional attributes used by the DTOMaker.MessagePack source generator, to manage MessagePack entity and member keys.

DTOMaker.MemBlocks

Generates DTOs whose internal data is a single memory block (Memory<byte>). Property getters and setters decode and encode values directly to the block with little-endian (default) or big-endian byte ordering.

DTOMaker.Models.MemBlocks

Additional attributes used by the DTOMaker.MemBlocks source generator, to manage entity and member memory layout.

DTOMaker.CSPoco

Generates basic POCOs (Plain Old C# Objects) that implement the model interfaces.

DTOMaker.CSRecord (.NET 8+)

Generates C# records that implement the model interfaces.

DTOMaker.Runtime

Common types used at runtime by DTOMaker generated entities.

Model features

  • Member value types: Boolean, S/Byte, U/Int16/32/64/128, Double, Single, Half, Char, Guid, Decimal
  • String member types.
  • Binary member types:
    • Octets (model interfaces, CSRecord, MemBlocks)
    • ReadOnlyMemory<byte> (MessagePack)
  • polymorphic types
  • entity members
  • Built-in freezability (mutable until frozen) support
  • [Obsolete] members
  • Fixed length arrays of above value types.
  • IEquatable<T> support
  • Templates as testable code, template-to-generator processing.

MemBlocks features

  • auto-embedded string, binary and entity members when encoded ⇐ 62 bytes.
  • fixed-length string and binary member types.

!Limitations

Single compilation unit

All models and generated DTOs are contained within a single assembly. Models cannot reference types in other projects or pacakges (other than native types). Generated classes are partial, which can help you mitigate the single assembly constraint.

Development

In progress

  • Json (NewtonSoft) generator

Coming soon

  • Json (System.Text) generator
  • upgrade source generators to IIncrementalGenerator
  • global interface equality comparer
  • reservation (hidden members)
  • Orleans generator
  • ProtobufNet 3.0 generator
  • MessagePack 3.x generator
  • NetStrux generator
  • MemBlocks compact layout method
  • Enum data types. Workaround - enums can be implemented with an underlying integer property and a cast.
  • MemBlocks nullable types. Workaround - T? can be implemented with a pair of members (Boolean, T).

Coming later

  • custom struct members (to avoid primitive obsession)
  • Google Protobuf .proto generation
  • model.json generation
  • command-line alternative
  • generic model patterns: lists, trees, unions, etc.
  • variable length arrays
  • logical value equality
  • Rune member types
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.67.6-dev 103 7/9/2025
0.67.5-dev 100 7/9/2025
0.67.3-dev 129 7/7/2025
0.67.1-dev 280 6/10/2025
0.66.18 240 6/9/2025
0.66.17-dev 208 6/9/2025
0.66.16-dev 112 6/8/2025
0.66.14-dev 63 6/7/2025
0.66.13-dev 130 6/5/2025
0.66.10-dev 140 6/5/2025
0.66.9-dev 132 6/5/2025
0.66.8-dev 138 6/5/2025
0.66.7-dev 133 6/4/2025
0.66.2-dev 65 5/31/2025
0.65.20-generics-g24a665d336 59 5/31/2025
0.65.13-generics-ge74b19332f 159 4/23/2025
0.65.10-generics-g6f262eb134 183 4/17/2025
0.65.1-generics 60 5/31/2025
0.64.27 137 5/27/2025
0.64.26 195 5/16/2025
0.64.24 141 5/8/2025
0.64.22 159 4/23/2025
0.64.20 159 4/10/2025
0.64.18 155 4/10/2025
0.64.17 151 4/10/2025
0.64.16 161 4/9/2025
0.64.10 165 4/7/2025
0.64.9 128 4/4/2025
0.64.8-dev 160 4/1/2025
0.64.7-dev-g53a80ba3be 153 4/1/2025
0.64.5-dev-g449e36f771 471 3/25/2025
0.64.5-dev-g2fcf9bff64 156 4/1/2025
0.64.4-dev 153 4/1/2025
0.64.3-dev 147 3/31/2025
0.64.2-dev 479 3/25/2025
0.64.1-dev 471 3/25/2025
0.63.60-gee4d301e03 474 3/25/2025
0.63.19 104 3/21/2025
0.63.19-g2e909c64aa 94 3/21/2025
0.63.17 119 3/14/2025
0.63.16 115 3/14/2025
0.63.15 145 3/13/2025
0.63.13 161 3/11/2025
0.63.12 156 3/11/2025
0.63.11-dev 155 3/11/2025
0.63.9-dev 151 3/11/2025
0.63.8-dev 153 3/10/2025
0.63.7-dev 157 3/10/2025
0.63.6-dev 152 3/10/2025
0.63.3-dev 155 3/10/2025
0.62.10 233 3/8/2025
0.62.9 213 3/8/2025
0.62.7 214 3/7/2025
0.62.6-dev 197 3/7/2025
0.62.5-dev 199 3/7/2025
0.61.14 210 3/6/2025
0.61.13-dev 194 3/6/2025
0.61.12-dev 196 3/6/2025
0.61.10-dev 192 3/6/2025
0.61.9-dev 198 3/5/2025
0.61.8-dev 198 3/5/2025
0.61.5-dev 196 3/4/2025
0.61.3-dev 192 3/4/2025
0.61.2-dev 138 3/3/2025
0.60.8 107 2/27/2025
0.60.7 99 2/27/2025
0.60.6-dev 86 2/27/2025
0.60.3-dev 88 2/25/2025
0.59.10 109 2/19/2025
0.59.8-dev 98 2/19/2025
0.59.5-dev 91 2/17/2025
0.59.4-dev 93 2/15/2025
0.58.9 111 2/4/2025
0.58.8-dev 101 2/4/2025
0.57.6 98 2/1/2025
0.57.4 99 2/1/2025
0.57.2-dev 83 2/1/2025
0.57.1-dev 79 2/1/2025
0.56.13 96 1/31/2025
0.56.12-dev 83 1/31/2025
0.56.11-dev 91 1/30/2025
0.56.10-dev 89 1/30/2025
0.56.9-dev 94 1/30/2025