我在我现在需要在服务器上部署的 ASP.NET 应用程序中使用了 Linq to SQL。不幸的是,托管服务器只能提供中等级别的信任。我的应用程序在没有 ReflectionPermission 类型的权限时崩溃。
有没有办法编辑我的查询来解决这个限制?
例如,我的应用程序在调用此代码时崩溃:
Error error = new Error { Date = DateTime.Now, Message = message, StackTrace = stack };
dataContext.Errors.InsertOnSubmit(error);
dataContext.SubmitChanges();
谢谢。