mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-06 05:56:10 +00:00
Merge pull request #68 from koenbeuk/issue-65
Import using directives to help resolve extension methods
This commit is contained in:
@@ -11,6 +11,8 @@ namespace EntityFrameworkCore.Projectables.Generator
|
||||
{
|
||||
public class ProjectableDescriptor
|
||||
{
|
||||
public IEnumerable<UsingDirectiveSyntax>? UsingDirectives { get; set; }
|
||||
|
||||
public string? ClassNamespace { get; set; }
|
||||
|
||||
public IEnumerable<string>? NestedInClassNames { get; set; }
|
||||
|
||||
@@ -119,6 +119,8 @@ namespace EntityFrameworkCore.Projectables.Generator
|
||||
var declarationSyntaxRewriter = new DeclarationSyntaxRewriter(semanticModel);
|
||||
|
||||
var descriptor = new ProjectableDescriptor {
|
||||
|
||||
UsingDirectives = member.SyntaxTree.GetRoot().DescendantNodes().OfType<UsingDirectiveSyntax>(),
|
||||
ClassName = memberSymbol.ContainingType.Name,
|
||||
ClassNamespace = memberSymbol.ContainingType.ContainingNamespace.IsGlobalNamespace ? null : memberSymbol.ContainingType.ContainingNamespace.ToDisplayString(),
|
||||
MemberName = memberSymbol.Name,
|
||||
|
||||
@@ -153,7 +153,23 @@ namespace EntityFrameworkCore.Projectables.Generator
|
||||
|
||||
#nullable disable
|
||||
|
||||
var compilationUnit = CompilationUnit()
|
||||
var compilationUnit = CompilationUnit();
|
||||
|
||||
foreach (var usingDirective in projectable.UsingDirectives)
|
||||
{
|
||||
compilationUnit = compilationUnit.AddUsings(usingDirective);
|
||||
}
|
||||
|
||||
if (projectable.ClassNamespace is not null)
|
||||
{
|
||||
compilationUnit = compilationUnit.AddUsings(
|
||||
UsingDirective(
|
||||
ParseName(projectable.ClassNamespace)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
compilationUnit = compilationUnit
|
||||
.AddMembers(
|
||||
NamespaceDeclaration(
|
||||
ParseName("EntityFrameworkCore.Projectables.Generated")
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using System.Collections.Generic;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using System.Collections.Generic;
|
||||
using Projectables.Repro;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foos;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using One.Two;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
// <auto-generated/>
|
||||
#nullable disable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using EntityFrameworkCore.Projectables;
|
||||
using Foo;
|
||||
|
||||
namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Never)]
|
||||
|
||||
Reference in New Issue
Block a user