.NET Entity Framework - Using .Contains() to find a byte value in a Where expression

后端 未结 2 1177
迷失自我
迷失自我 2020-12-16 11:44

I am building an IQueryable based on parameters I get from the user. One of those parameters is a multi-select and I need to retrieve records that contain any of the selecte

2条回答
  •  旧巷少年郎
    2020-12-16 12:13

    I was able to reproduce your error in LINQPad, and found that using a List instead of a byte[] would work:

    // byte[] ids = new byte[] { 1, 64 };  <== causes ArgumentException
    List ids = new List { 1, 64};
    
    var c = Courses.Where (co => ids.Contains(co.CourseDeliveryId));
    

    will generate the following sql and return results:

    SELECT 
    [Extent1].[CourseId] AS [CourseId], 
    [Extent1].[CourseName] AS [CourseName], 
    [Extent1].[CourseDeliveryId] AS [CourseDeliveryId]
    FROM [dbo].[Courses] AS [Extent1]
    WHERE [Extent1].[CourseDeliveryId] IN (1,64)
    

    It's also interesting that using an int[] or short[] would also work, producing this sql:

    SELECT 
    [Extent1].[CourseId] AS [CourseId], 
    [Extent1].[CourseName] AS [CourseName], 
    [Extent1].[CourseDeliveryId] AS [CourseDeliveryId]
    FROM [dbo].[Courses] AS [Extent1]
    WHERE (1 =  CAST( [Extent1].[CourseDeliveryId] AS int)) OR (64 =  CAST( [Extent1].[CourseDeliveryId] AS int))
    

    but using a byte[] causes an exception. I can only guess that the SQL Server EF provider is trying to treat byte[] in some special way, resulting in this exception.

提交回复
热议问题