English 中文(简体)
为什么有人在服务器方面写上从记忆中抽取的电子数据?
原标题:Why people write that IEnumerable filters data from within memory while IQueryable does it on the server side?
  • 时间:2024-05-04 02:11:05
  •  标签:
  • c#

There are many topics on stackoverflow: When should I use IEnumerable and when IQueryable? What is the difference between IQueryable<T> and IEnumerable<T>? When should I use IEnumerable and when IQueryable? What s the difference between IQueryable and IEnumerable

各地的人都写道,在服务器方面,从记忆中可识别的过滤数据。 www.un.org/Depts/DGACM/index_french.htm

如果我们分裂一个问题!

因此:

IEnumerable<Customer> customers = context.Customers.Where(c => c.FirstName.StartsWith("J")).Take(5).ToList(); 

它对过滤层(5)进行了正确查询:

select top(5) * from Customers WHERE FirstName like  j% ;

但:

IEnumerable<Customer> customers = context.Customers.Where(c => c.FirstName.StartsWith("J")); 
var result = customers.Take(5).ToList(); //the filter is in a different line of code

它提供了一个没有上层的询问:

select * from Customers WHERE FirstName like  j% ;

因此,人们为什么在服务器方面写到,从记忆中可以识别的电子计算机过滤数据?

问题回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签