No, I don't think there's anything any there yet.
Be aware that DevForce doesn't generate the developer class file for an injected base type, so you need to create one in order to do anything with the base type.
You can use another generated developer class file (or the code below) as a model, but be sure your base type inherits from IdeaBlade.EntityModel.Entity.
using System;
using System.Linq;
using IbEm = IdeaBlade.EntityModel;
using IdeaBlade.Core;
namespace SilverlightConsole {
public class BaseEntity: IbEm.Entity {
}
}
|