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 IEntity2 entity,
	bool includeRelatedEntities
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function ContainsDirtyContents ( 
	entity As IEntity2,
	includeRelatedEntities As Boolean
) As Boolean
Visual C++
public:
[ExtensionAttribute]
static bool ContainsDirtyContents(
	IEntity2^ entity, 
	bool includeRelatedEntities
)
F#
static member ContainsDirtyContents : 
        entity : IEntity2 * 
        includeRelatedEntities : bool -> bool 

Parameters

entity
Type: IEntity2
includeRelatedEntities
Type: System..::..Boolean

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 IEntity2. 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