2016-08-22 2 views
1

이 실패로가 이상하다 포함합니다. Include()는 .Where 절과 작동하지 않습니다. 어떤 아이디어?는 사람이 그냥 잘 작동 나의 이유를 설명을 시도 할 수 있습니다,() 알의 절

예외 :

SELECT [t].[TaskId], [t].[CategoryId], [t].[Description], [t].[Name], [t].[Timestamp], [t.Category].[CategoryId], [t.Category].[Description], [t.Category].[Name], [t.Category].[Timestamp], [t.Category].[UserId], [t.Category.ApplicationUser].[Id], [t.Category.ApplicationUser].[AccessFailedCount], [t.Category.ApplicationUser].[ConcurrencyStamp], [t.Category.ApplicationUser].[Email], [t.Category.ApplicationUser].[EmailConfirmed], [t.Category.ApplicationUser].[LockoutEnabled], [t.Category.ApplicationUser].[LockoutEnd], [t.Category.ApplicationUser].[NormalizedEmail], [t.Category.ApplicationUser].[NormalizedUserName], [t.Category.ApplicationUser].[PasswordHash], [t.Category.ApplicationUser].[PhoneNumber], [t.Category.ApplicationUser].[PhoneNumberConfirmed], [t.Category.ApplicationUser].[SecurityStamp], [t.Category.ApplicationUser].[TwoFactorEnabled], [t.Category.ApplicationUser].[UserName], [c].[CategoryId], [c].[Description], [c].[Name], [c].[Timestamp], [c].[UserId], [a].[Id], [a].[AccessFailedCount], [a].[ConcurrencyStamp], [a].[Email], [a].[EmailConfirmed], [a].[LockoutEnabled], [a].[LockoutEnd], [a].[NormalizedEmail], [a].[NormalizedUserName], [a].[PasswordHash], [a].[PhoneNumber], [a].[PhoneNumberConfirmed], [a].[SecurityStamp], [a].[TwoFactorEnabled], [a].[UserName] 
FROM [Tasks] AS [t] 
INNER JOIN [Categories] AS [t.Category] ON [t].[CategoryId] = [t.Category].[CategoryId] 
LEFT JOIN [AspNetUsers] AS [t.Category.ApplicationUser] ON [t.Category].[UserId] = [t.Category.ApplicationUser].[Id] 
INNER JOIN [Categories] AS [c] ON [t].[CategoryId] = [c].[CategoryId] 
LEFT JOIN [AspNetUsers] AS [a] ON [c].[UserId] = [a].[Id] 
ORDER BY [t.Category].[UserId] 

모델 : SQL 서버에 대해 실행하면 잘 작동하고

at lambda_method(Closure , InternalEntityEntry) 
    at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.SimpleNonNullableDependentKeyValueFactory`1.TryCreateFromCurrentValues(InternalEntityEntry entry, TKey& key) 
    at Microsoft.EntityFrameworkCore.Query.Internal.WeakReferenceIdentityMap`1.CreateIncludeKeyComparer(INavigation navigation, InternalEntityEntry entry) 
    at Microsoft.EntityFrameworkCore.Query.Internal.QueryBuffer.IncludeCore(Object entity, INavigation navigation) 
    at Microsoft.EntityFrameworkCore.Query.Internal.QueryBuffer.Include(QueryContext queryContext, Object entity, IReadOnlyList`1 navigationPath, IReadOnlyList`1 relatedEntitiesLoaders, Int32 currentNavigationIndex, Boolean queryStateManager) 
    at Microsoft.EntityFrameworkCore.Query.Internal.QueryBuffer.Include(QueryContext queryContext, Object entity, IReadOnlyList`1 navigationPath, IReadOnlyList`1 relatedEntitiesLoaders, Boolean queryStateManager) 
    at Microsoft.EntityFrameworkCore.Query.Internal.GroupJoinInclude.Include(Object entity) 
    at Microsoft.EntityFrameworkCore.Query.QueryMethodProvider.<_GroupJoin>d__26`4.MoveNext() 
    at System.Linq.Enumerable.<SelectManyIterator>d__163`3.MoveNext() 
    at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext() 
    at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.<_TrackEntities>d__15`2.MoveNext() 
    at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext() 
    at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) 
    at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) 
    at _:line 56 

생성 된 SQL 마지막으로

public class Task 
{ 
    [Key] 
    public int TaskId { get; set; } 
    public string Name { get; set; } 
    public string Description { get; set; } 
    public DateTime Timestamp { get; set; } 
    public int CategoryId { get; set; } 

    public virtual Category Category { get; set; } 
} 

public class Category 
{ 
    [Key] 
    public int CategoryId { get; set; } 
    public string Name { get; set; } 
    public string Description { get; set; } 
    public DateTime Timestamp { get; set; } 

    public string UserId { get; set; } 
    [ForeignKey("UserId")] 
    public virtual ApplicationUser ApplicationUser { get; set; } 

    public virtual ICollection<Task> Tasks { get; set; } 
} 

public class ApplicationUser : IdentityUser 
{ 
    public virtual ICollection<Category> Categories { get; set; } 
} 
+0

무엇이 예외인지는 알 수 없으므로 .Include() 및 .Where()와 함께 작동하도록하는 방법을 찾으면 알려 주시기 바랍니다. 그리고, 어떤 버전의 EF를 사용하고 있습니까? – octavioccl

+0

'Category'와'ApplicationUser'를 보여주세요 – haim770

+0

이것은 EF Core입니다 예외는 – lucas

답변

0

, 내가 해결 할 수 있었다 반나절 후 문제는 낭비되었다. .Include() 및 .Where()를 사용하여 원하는 결과를 얻을 수 없었지만 이것이 저에게 효과적이었습니다.