Getting started using Linq, what do I need?

后端 未结 12 1683
清酒与你
清酒与你 2021-02-14 07:59

Basically what the title says. (Forgive me because I am a .NET newb)

In my department, we have a server running .net 3.5 and ever since I got into this section I have be

12条回答
  •  独厮守ぢ
    2021-02-14 08:04

    LINQ requires framework 3/3.5, because it use a lot of extensions of 3/3.5 (Extension method, lambda expression Func<> delegate etc).Then it doesn' t work with 2.0 version.

    If you develop a project using linq on your local pc, simply make a standard deploy (e.g. copy dll, aspx etc) to server production and it will works. No special actions are required.

    i hope i help you

提交回复
热议问题