mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-06 05:56:10 +00:00
Merge pull request #61 from koenbeuk/issue-53
Simplified type resolution
This commit is contained in:
@@ -214,14 +214,9 @@ namespace EntityFrameworkCore.Projectables.Generator
|
||||
// if this node refers to a named type which is not yet fully qualified, we want to fully qualify it
|
||||
if (symbol.Kind is SymbolKind.NamedType && node.Parent?.Kind() is not SyntaxKind.QualifiedName)
|
||||
{
|
||||
var typeInfo = _semanticModel.GetTypeInfo(node);
|
||||
|
||||
if (typeInfo.Type is not null)
|
||||
{
|
||||
return SyntaxFactory.ParseTypeName(
|
||||
typeInfo.Type.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat)
|
||||
).WithLeadingTrivia(node.GetLeadingTrivia());
|
||||
}
|
||||
return SyntaxFactory.ParseTypeName(
|
||||
symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat)
|
||||
).WithLeadingTrivia(node.GetLeadingTrivia());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace EntityFrameworkCore.Projectables.Generated
|
||||
{
|
||||
static global::System.Linq.Expressions.Expression<global::System.Func<global::Foo.EntityExtensions.Entity, global::Foo.EntityExtensions.Entity>> Expression()
|
||||
{
|
||||
return (global::Foo.EntityExtensions.Entity entity) => new Entity(entity.Id)
|
||||
return (global::Foo.EntityExtensions.Entity entity) => new global::Foo.EntityExtensions.Entity(entity.Id)
|
||||
{FullName = entity.FullName};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1615,7 +1615,6 @@ class EntityBase<TId> where TId : ICloneable, new() {
|
||||
return Verifier.Verify(result.GeneratedTrees[0].ToString());
|
||||
}
|
||||
|
||||
|
||||
#region Helpers
|
||||
|
||||
Compilation CreateCompilation(string source, bool expectedToCompile = true)
|
||||
|
||||
Reference in New Issue
Block a user