在设置期间Entity Context
会得到一个StackOverflowException
数据库SQL Server Compact
大约有 220MB 和大约 200,000 条记录作为本地 windows 数据库存储。
它有一个 NText 字段
edmx 是自动生成的。
定义的属性:
public static dbEntities Context
{
get
{
return Context;
}
set
{ // The Error locator will stop here as the source of the Error
Context = value;
}
}
在加载过程中:
DataStore.Context = new Store.dbEntities() ;