c# - 无法使用状态服务器序列化 session 状态

标签 c# asp.net serialization

我遇到以下错误,想知道我们是否可以使 System.Data.Linq.EntitySet 可序列化

Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[SerializationException: Type 'System.Data.Linq.EntitySet`1[[NES.HiLo.Data.DAO.UserResource, NES.HiLo.Data, Version=1.0.5012.39381, Culture=neutral, PublicKeyToken=null]]' in Assembly 'System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable.] System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType type) +7738715 System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, StreamingContext context) +258 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo() +111 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +422 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +51 System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Write(WriteObjectInfo objectInfo, NameInfo memberNameInfo, NameInfo typeNameInfo) +7636088 System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck) +461 System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck) +134 System.Web.Util.AltSerialization.WriteValueToStream(Object value, BinaryWriter writer) +1577

最佳答案

异常实际上已经告诉您问题所在,EntitySet 不可序列化。因此,如果您使用 session 数据库功能,它不能存储在 session 状态中。

EntitySet 不实现/支持这个。因此,要将其存储在 session 状态中,您必须将数据读入您自己的对象中,然后保存它。 或者干脆不要尝试使用 session 状态来“保留”那些类型的对象,因为通常您不想这样做(没有最佳实践)。

关于c# - 无法使用状态服务器序列化 session 状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18938127/

相关文章:

c# - 完全信任和中度信任问题

c# - Web.config 中的 "The attribute ' connectionStringName ' is missing or empty."

javascript - 将动态json添加到静态json

java.io.NotSerializedException 问题

c# - 为代码设置 ASP.NET 结构

javascript - 序列化和反序列化JS对象

c# - 遍历二维数组c#

c# - 无法将 MVC 模型属性绑定(bind)到输入元素

c# - 如何在 WebClient.DownloadStringAsync URL 中使用字符串

c# - 具有客户端证书和基本身份验证的 WCF 客户端