maximum number of parameters in sql query

前端 未结 1 1901
隐瞒了意图╮
隐瞒了意图╮ 2020-12-05 13:15

I do experiment with LINQ since some time. Typical method to enumerate through a collection and change some of its properties in my code would look like:

ATD         


        
相关标签:
1条回答
  • 2020-12-05 13:41

    The limits are hard-coded:

    • Parameters per stored procedure 2,100
    • Parameters per user-defined function 2,100

    I wrote some code before that split the Contains query into batches and combined the results... see here for more.

    0 讨论(0)
提交回复
热议问题