0

在设置期间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() ;
4

1 回答 1

1

好吧,做

public static dbEntities Context {get;set;}

您不认为在 Context 中获取或设置 Context 是......嗯......有点递归?

于 2012-07-20T07:05:28.633 回答