using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; namespace RaptorDB.Views { public class View { public View() { Indexes = new List<IndexInfo>(); DocID = Guid.NewGuid(); } public string Name { get; set; } public string FileName { get; set; } public string MapFunction { get; set; } public string SchemaColumns { get; set; } public List<IndexInfo> Indexes { get; set; } public long Count { get; set; } public string MapFunctionDllName { get; set; } public string MapLanguage { get; set; } public List<Type> FireOnTypes { get; set; } public DateTime LastUpdateDate { get; set; } public Guid DocID { get; set; } } public class IndexInfo { public string Name { get; set; } public string FileName { get; set; } public string ColumnName { get; set; } public INDEXTYPE IndexType { get; set; } [XmlIgnore()] public IIndex Index { get; set; } public long LastIndexOffset { get; set; } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers