Marks entity as saved after a succesfull database operation via the web service.

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

Syntax

C#
public static void MarkEntityAsSaved(
	this IEntity2 entity
)
Visual Basic
<ExtensionAttribute> 
Public Shared Sub MarkEntityAsSaved ( 
	entity As IEntity2
)
Visual C++
public:
[ExtensionAttribute]
static void MarkEntityAsSaved(
	IEntity2^ entity
)
F#
static member MarkEntityAsSaved : 
        entity : IEntity2 -> unit 

Parameters

entity
Type: IEntity2

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