Merge pull request #38 from koenbeuk/cleanup-verifytests

Exclude received tests results from git
This commit is contained in:
Koen
2022-10-11 14:39:39 +01:00
committed by GitHub
5 changed files with 4 additions and 71 deletions

5
.gitignore vendored
View File

@@ -360,4 +360,7 @@ MigrationBackup/
.ionide/
# Fody - auto-generated XML schema
FodyWeavers.xsd
FodyWeavers.xsd
# Received verify test results
*.received.*

View File

@@ -1,18 +0,0 @@
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
using Foo;
namespace EntityFrameworkCore.Projectables.Generated
#nullable disable
{
public static class Foo_Foo_IdWithBar
{
public static System.Linq.Expressions.Expression<System.Func<global::Foo.Foo, int>> Expression()
{
return (global::Foo.Foo @this) =>
@this.Id + @this.Bar;
}
}
}

View File

@@ -1,18 +0,0 @@
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
using Foo;
namespace EntityFrameworkCore.Projectables.Generated
#nullable disable
{
public static class Foo_Foo_IdWithBar
{
public static System.Linq.Expressions.Expression<System.Func<global::Foo.Foo, bool>> Expression()
{
return (global::Foo.Foo @this) =>
@this.Id > global::Foo.Constants.Bar;
}
}
}

View File

@@ -1,18 +0,0 @@
using System;
using System.Linq;
using System.Collections.Generic;
using EntityFrameworkCore.Projectables;
using Foo;
namespace EntityFrameworkCore.Projectables.Generated
#nullable disable
{
public static class Foo_Foo_IdWithBar
{
public static System.Linq.Expressions.Expression<System.Func<global::Foo.Foo, int>> Expression()
{
return (global::Foo.Foo @this) =>
@this.Id + @this.Bar;
}
}
}

View File

@@ -1,16 +0,0 @@
using EntityFrameworkCore.Projectables;
using System.Collections.Generic;
using Projectables.Repro;
namespace EntityFrameworkCore.Projectables.Generated
#nullable disable
{
public static class Projectables_Repro_SomeEntity_ParentOrThis
{
public static System.Linq.Expressions.Expression<System.Func<global::Projectables.Repro.SomeEntity, global::Projectables.Repro.SomeEntity>> Expression()
{
return (global::Projectables.Repro.SomeEntity @this) =>
@this. Parent != null ? @this.Parent : this;
}
}
}