Rename test sample table to sample_users and retarget tests to net10.0

This commit is contained in:
root
2026-02-26 15:31:23 +01:00
parent 4d5bebba07
commit 783a0765cd
16 changed files with 589 additions and 589 deletions

View File

@@ -37,7 +37,7 @@ namespace DynamORM.Tests.Select
[TestFixture]
public class RenamedTypedAccessTests : TypedAccessTests<Users>
{
/// <summary>Test something fancy... like: <code>select "first", count("first") aggregatefield from "users" group by "first" order by 2 desc;</code>.</summary>
/// <summary>Test something fancy... like: <code>select "first", count("first") aggregatefield from "sample_users" group by "first" order by 2 desc;</code>.</summary>
[Test]
public override void TestTypedFancyAggregateQuery()
{
@@ -52,7 +52,7 @@ namespace DynamORM.Tests.Select
Assert.AreEqual(1, v.Last().AggregateField);
}
/// <summary>Test something fancy... like: <code>select "first", count("first") aggregatefield from "users" group by "first" order by 2 desc;</code>.</summary>
/// <summary>Test something fancy... like: <code>select "first", count("first") aggregatefield from "sample_users" group by "first" order by 2 desc;</code>.</summary>
[Test]
public override void TestGenericFancyAggregateQuery()
{