Can we make it rule to not have documentation about extension methods without stating what namespace it's defined in? That'd be handy coz I've never once seen intellisense figure this out by itself.
Where does "ExcludeFields" live?
Linq to LLBLGen Pro supports the exclusion and inclusion of fields (Adapter, SelfServicing). This is done through the extension methods ExcludeFields and IncludeFields. Using these methods, the developer can specify which fields to exclude in an entity fetch (ExcludeFields) or which fields to use (IncludeFields). The following example illustrates how to exclude two fields from an entity fetch.
I have these namespaces currently
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using Shivam.TradeTerminal.DAL.Linq;
using Shivam.TradeTerminal.DAL.EntityClasses;
using Shivam.TradeTerminal.DAL.HelperClasses;
using Shivam.TradeTerminal.DAL;
using SD.LLBLGen.Pro.LinqSupportClasses;
using SD.LLBLGen.Pro.ORMSupportClasses;