During Setting an Entity Context will get a StackOverflowException
Database is SQL Server Compact with about 220MB and about 200,000 records
as local windows database storage.
It has a NText field
The edmx is generated automatically.
The Defined Property :
public static dbEntities Context
{
get
{
return Context;
}
set
{ // The Error locator will stop here as the source of the Error
Context = value;
}
}
Inside the Load Process:
DataStore.Context = new Store.dbEntities() ;
Well, just do
don’t you think that getting or setting Context inside of Context is…well… a little bit recursive ?