Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Folder NameDescription
CollectionsContains all non-collection business object types.
CommandsContains the data access implementation.
CriteriaContains properties, factory methods and required rules.
EntitiesContains all non-collection business object types.
UtilityContains any utilities classes that may be used by the generated code.

Warning
If you are using Visual Basic, then you will have to click the Show All files button in the Solution Explorer to see the partial classes.

For the simplicity of this walk through, I'll choose to talk about the Category business object. The Category business object is shown in the image above. As you might have noticed, there are multiple files for the Category business object. These files are called partial classes, which allows us to separate the different responsibilities of a business object.

...