Mindscape.Lightspeedを使用していて、次のエラーが表示されます。 エラー:無効なオブジェクト名 'KeyTable'。Mindscape.Lightspeedエラー:無効なオブジェクト名 'KeyTable'
LightSpeedContext<LightSpeedModel1UnitOfWork> context = new LightSpeedContext<LightSpeedModel1UnitOfWork>("Development");
using (var uow = context.CreateUnitOfWork())
{
SiteUser user = new SiteUser();
user.UserName = "ABC";
user.RoleId = 1;
uow.Add(user);
}
ここに、ヘルプJDの記述に直接リンクがあります。http://www.mindscapehq.com/documentation/lightspeed/Controlling-the-Database-Mapping/Identity-Generation – Myster