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#
[SerializableAttribute]
public class EnhancedExcludeFieldsList : ExcludeFieldsList
Visual Basic
<SerializableAttribute>
Public Class EnhancedExcludeFieldsList
	Inherits ExcludeFieldsList
Visual C++
[SerializableAttribute]
public ref class EnhancedExcludeFieldsList : public ExcludeFieldsList
F#
[<SerializableAttribute>]
type EnhancedExcludeFieldsList =  
    class
        inherit ExcludeFieldsList
    end

Inheritance Hierarchy

System..::..Object
  System.Collections.Generic..::..List<(Of <(<'IEntityFieldCore>)>)>
    ExcludeIncludeFieldsList
      ExcludeFieldsList
        MonoSoftware.LLBLGen..::..EnhancedExcludeFieldsList

See Also