Thanks. I was using the Nettiers 2.2 version promoted on the site, but per your recommendation I downloaded last night's build (2008.02.04) and get the same errors. Here are a couple code snippets with the error commented if anyone else is interested:
********************************************************************************************
********************************************************************************************
#region Using directives
using System;
#endregion
namespace NamespaceName.Biz
{
///<summary>
/// An object representation of the 'ViewEntityName_Base' view. [No description found in the database]
///</summary>
/// <remarks>
/// This file is generated once and will never be overwritten.
/// </remarks>
[Serializable]
[CLSCompliant(true)]
public partial class EntityNameBase : EntityNameBaseBase
{
#region Constructors
///<summary>
/// Creates a new <see cref="EntityNameBase"/> instance.
///</summary>
public EntityNameBase() : base() { } //Type 'EntityNameBase' already defines a member called 'EntityNameBase' with the same parameter types C:\..\Views\EntityNameBase.cs
#endregion
}
}
********************************************************************************************
********************************************************************************************
#region using directives
using System;
using System.ComponentModel;
using System.Collections;
using System.Xml.Serialization;
using System.Runtime.Serialization;
#endregion
namespace NamespaceName.Biz
{
///<summary>
/// An object representation of the 'EntityName' table. [No description found the database]
///</summary>
[DataContract]
[Serializable, DataObject]
[CLSCompliant(true)]
public abstract partial class EntityNameBase : EntityBase, Burgess.Biz.IEntityName, IEntityId<EntityNameKey>, System.IComparable, System.ICloneable, IEditableObject, IComponent, INotifyPropertyChanged //Partial declarations of 'EntityNameBase' must not specify different base classes C:\..\EntityNameBase.generated.cs
{
#region Variable Declarations
/// <summary>
/// Hold the inner data of the entity.
/// </summary>
private EntityNameEntityData entityData;