Hi,
Just getting started using localDb. I'm at a cross road on how to define a field in my
Table for a struct. Converting my program from writing to a
.xml file and my class looks like this:
[Serializable()]
public class OdsMessageUpdateEvent
{
public OdsMessageUpdateEvent()
{
this.OdsHebContent = new HebrewContent();
this.OdsHebContentState = new HebrewContentState();
}
[Key]
public string MessageId { get; set; }
public string Message { get; set; }
public string Hebrew { get; set; }
public string Title { get; set; }
public string StrongNo { get; set; }
[Serializable()]
public struct HebrewContent
{
public string XPathWriting { get; set; } // table:table = contains all the table:table-row (Chapters)
public string XPathChapter { get; set; } // table:table-row = contains all the table:table-cell (Words)
public string ...
Go to the complete details ...