0

我正在使用 Linq to SQL 访问我的 SQL Ce 数据库。

var Logcontext = new LogContext(GCUtility.LconnectionPool.Connection);
{           
 var _ApplicationsK = (from u in Logcontext.Applications select u.PK_Key).ToList<int>();
}

在上面的代码中,PK_Key 是数据库中一个自动递增的整数变量。它抛出一个异常“System.Data.SqlServerCe.dll 中发生'System.StackOverflowException'类型的未处理异常”。我尝试在 Visual Studio 上清理、重建、重新启动等。我正在使用 Linq 运行时版本 v4.0.30319。我的代码有什么问题?

表结构如下所示。

PK_Key (Type = int, PrimaryKey = true, Identity = True, Identity increment = 1, seed =1 )

Username (Type = varchar, AllowNulls = True)

Linq SqlMetal.exe 为列 PK_Key 生成了以下代码

 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage = "_PK_Key", AutoSync = AutoSync.OnInsert, DbType = "Int NOT NULL IDENTITY", IsPrimaryKey = true, IsDbGenerated = true)]
    public int PK_Key
    {
        get
        {
            return this._PK_Key;
        }
        set
        {
            if ((this._PK_Key != value))
            {
                this.OnPK_KeyChanging(value);
                this.SendPropertyChanging();
                this._PK_Key = value;
                this.SendPropertyChanged("PK_Key");
                this.OnPK_KeyChanged();
            }
        }
    }
4

1 回答 1

2

我发现了实际问题,我有另一个继承了这个类的子类。上面的代码在父类的构造函数中。我在父类中实例化了继承的子类,导致无限循环。愚蠢的我。

于 2013-03-05T22:14:07.597 回答