You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 16, 2022. It is now read-only.
I have the following schema in my existing project.
[Serializable]
public class Message {
public virtual string Type {get; set;}
}
[Serializable]
class ByteMessage : Message {
public byte[] Prop2 {get;set;}
}
public class StringMessage : Message {
public string Prop3 {get; set;}
}
and 1000 of classes like this.
Currently using BinaryFormatter successfully, but lately I am seeing lot of performance issues and came across this wonderful library.
Is there a way I can continue without decorating [ZeroFormattable] and [Index] attribute?
What would be the best way to migrate all DTO types efficiently?
Thank you.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have the following schema in my existing project.
[Serializable]
public class Message {
public virtual string Type {get; set;}
}
[Serializable]
class ByteMessage : Message {
public byte[] Prop2 {get;set;}
}
public class StringMessage : Message {
public string Prop3 {get; set;}
}
and 1000 of classes like this.
Currently using BinaryFormatter successfully, but lately I am seeing lot of performance issues and came across this wonderful library.
Is there a way I can continue without decorating [ZeroFormattable] and [Index] attribute?
What would be the best way to migrate all DTO types efficiently?
Thank you.
The text was updated successfully, but these errors were encountered: