See also:
NTier Windows Forms Framework Home
NTier Framework API reference

Serialize the entity schema into one or more class, relational mapping, xsd and description strings (.resx) files.

If a file already exists (specified by a well formed URI), it is read first before being written out again to preserve unrelated xml nodes. the document.

Namespace: NTier.Model.Entity
Assembly: NTier.Model.Entity (in NTier.Model.Entity.dll) Version: 1.0.0.0

Syntax

C#
public void Serialize(
	IEntityClassSet entities,
	Action<string, string> fileWriter
)
Visual Basic
Public Sub Serialize ( 
	entities As IEntityClassSet,
	fileWriter As Action(Of String, String)
)
Visual C++
public:
void Serialize(
	IEntityClassSet^ entities, 
	Action<String^, String^>^ fileWriter
)

Parameters

entities
Type: NTier.Model.Entity..::..IEntityClassSet
The entities to serialize.
fileWriter
Type: System..::..Action<(Of <(<'String, String>)>)>
The delegate used to write the output files.

See Also