Hi David,
It is basically and experiment using the WCF services, I'm trying to avoid having references to LLBLGEN in the PL layer as well as adding custom properties and methods to the entities.
At this stage the MyUserEntity simply contains:
namespace NameSpace
{
/// <summary>
/// Inherited UserEntity.
/// </summary>
///
[Serializable]
public class User : UserEntity
{
/// <summary>
/// Return the users full name.
/// </summary>
public string FullName
{
get { return string.Format("{0} {1}",this.FirstName, this.LastName); }
}
}
}
In the code above I didn't specify a entityFactory, do you want the userEntitiy's factory code?
I know all about the auditing features of LLBLGEN (played with them a fair amount), Our code was developed using 2.0 before it was available. We may look at switching, but it looks a little like overkill compared to what we are currently using.
Thanks
A