While writing code i face this error "SQL Server Compact is not intended for ASP.NET development.". As the error message says: SQL CE is not for ASP.NET development due to its limitations. If for removing this error you needed write the following into your global.asax in the Application_Start
protected void
Application_Start()
{
AppDomain.CurrentDomain.SetData("SQLServerCompactEditionUnderWebHosting",
true);
}
|
I hope this will help you. :)
0 comments:
Please let me know your view