LLBLGen's default IncludeFieldsList behavior is that foreign key fields from SELECT query will always be included, even if you don't need them and have not passed them in the fields argument. Use this class to force the exclusion of the foreign key fields and fetch only the fields passed in the fields argument.

Namespace: MonoSoftware.LLBLGen
Assembly: MonoSoftware.LLBLGen (in MonoSoftware.LLBLGen.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public EnhancedIncludeFieldsList(
	Enum entityType,
	params IEntityFieldCore[] fields
)
Visual Basic
Public Sub New ( 
	entityType As Enum,
	ParamArray fields As IEntityFieldCore()
)
Visual C++
public:
EnhancedIncludeFieldsList(
	Enum^ entityType, 
	... array<IEntityFieldCore^>^ fields
)
F#
new : 
        entityType : Enum * 
        fields : IEntityFieldCore[] -> EnhancedIncludeFieldsList

Parameters

entityType
Type: System..::..Enum
fields
Type: array<IEntityFieldCore>[]()[][]

See Also