The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
i need to store RecordFilterDescriptorCollection and GridColumnDescriptorCollection into a binary field of an sql server table.
is it possible to use AppStateSerializer for that? like storing the binary file it creates into the sql table and vice versa.
i got an error from AppStateSerializer saying recordfilterdescriptor in not marked as serializable.
whats the best approach?
tia
ADAdministrator Syncfusion Team May 18, 2004 04:25 PM UTC
To serialize state information in a GridGroupingControl, try using the gridGroupingControl.WriteXmlSchema.
ADAdministrator Syncfusion Team May 18, 2004 04:40 PM UTC
is this correct:
System.Xml.XmlTextWriter xw = new System.Xml.XmlTextWriter("tempo1", null);
this.gridGroupingControl1.WriteXmlSchema(xw);
i get the follwing error:
There was an error reflecting type ''Syncfusion.Windows.Forms.Grid.Grouping.GridEngine
ADAdministrator Syncfusion Team May 18, 2004 08:06 PM UTC
Your code seems ok.
Have you downloaded the 2.0.5.1 update? There was an XML serialization problem in 2.0.5.0.
ADAdministrator Syncfusion Team May 18, 2004 10:37 PM UTC