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

Syntax

C#
public static bool ContainsDirtyContents(
	this IEntityCollection2 entities,
	IEntityField2[] excludedFields
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function ContainsDirtyContents ( 
	entities As IEntityCollection2,
	excludedFields As IEntityField2()
) As Boolean
Visual C++
public:
[ExtensionAttribute]
static bool ContainsDirtyContents(
	IEntityCollection2^ entities, 
	array<IEntityField2^>^ excludedFields
)
F#
static member ContainsDirtyContents : 
        entities : IEntityCollection2 * 
        excludedFields : IEntityField2[] -> bool 

Parameters

entities
Type: IEntityCollection2
excludedFields
Type: array<IEntityField2>[]()[][]

Return Value

Type: Boolean

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEntityCollection2. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also