This encompasses: - New behavior for SQLite - Migrated behavior for PostrgeSQL (from BitBadger.Npgsql.FSharp.Documents) - New "byField" behavior for PostgreSQL - A unification of C# and F# centric implementations
16 lines
367 B
C#
16 lines
367 B
C#
namespace BitBadger.Documents.Tests.CSharp;
|
|
|
|
public class SubDocument
|
|
{
|
|
public string Foo { get; set; } = "";
|
|
public string Bar { get; set; } = "";
|
|
}
|
|
|
|
public class JsonDocument
|
|
{
|
|
public string Id { get; set; } = "";
|
|
public string Value { get; set; } = "";
|
|
public int NumValue { get; set; } = 0;
|
|
public SubDocument? Sub { get; set; } = null;
|
|
}
|