mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-06 05:56:10 +00:00
Exclude received tests results from git
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -360,4 +360,7 @@ MigrationBackup/
|
||||
.ionide/
|
||||
|
||||
# Fody - auto-generated XML schema
|
||||
FodyWeavers.xsd
|
||||
FodyWeavers.xsd
|
||||
|
||||
# Received verify test results
|
||||
*.received.*
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user