LLBLGen's default ExcludeFieldsList behavior is that you can't exclude foreign key fields from SELECT query, even if you don't need them. Use this class to force the exclusion of the foreign key 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 EnhancedExcludeFieldsList(
	params IEntityFieldCore[] fields
)
Visual Basic
Public Sub New ( 
	ParamArray fields As IEntityFieldCore()
)
Visual C++
public:
EnhancedExcludeFieldsList(
	... array<IEntityFieldCore^>^ fields
)
F#
new : 
        fields : IEntityFieldCore[] -> EnhancedExcludeFieldsList

Parameters

fields
Type: array<IEntityFieldCore>[]()[][]

See Also