You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.1 KiB
108 lines
3.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using FLocal.Core;
|
|
using FLocal.Core.DB;
|
|
using System.Xml.Linq;
|
|
|
|
namespace FLocal.Common.dataobjects {
|
|
public class Category : SqlObject<Category> {
|
|
|
|
public class TableSpec : ITableSpec {
|
|
public const string TABLE = "Categories";
|
|
public const string FIELD_ID = "Id";
|
|
public const string FIELD_SORTORDER = "SortOrder";
|
|
public const string FIELD_NAME = "Name";
|
|
|
|
public static readonly TableSpec instance = new TableSpec();
|
|
public string name { get { return TABLE; } }
|
|
public string idName { get { return FIELD_ID; } }
|
|
}
|
|
|
|
protected override ITableSpec table { get { return TableSpec.instance; } }
|
|
|
|
private string _name;
|
|
public string name {
|
|
get {
|
|
this.LoadIfNotLoaded();
|
|
return this._name;
|
|
}
|
|
}
|
|
|
|
private int _sortOrder;
|
|
public int sortOrder {
|
|
get {
|
|
this.LoadIfNotLoaded();
|
|
return this._sortOrder;
|
|
}
|
|
}
|
|
|
|
protected override void doFromHash(Dictionary<string, string> data) {
|
|
this._name = data[TableSpec.FIELD_NAME];
|
|
this._sortOrder = int.Parse(data[TableSpec.FIELD_SORTORDER]);
|
|
}
|
|
|
|
private static readonly object allCategories_Locker = new object();
|
|
public static IEnumerable<Category> allCategories {
|
|
get {
|
|
return
|
|
from id in Cache<IEnumerable<int>>.instance.get(
|
|
allCategories_Locker,
|
|
() => {
|
|
IEnumerable<int> ids = from stringId in Config.instance.mainConnection.LoadIdsByConditions(
|
|
TableSpec.instance,
|
|
new FLocal.Core.DB.conditions.EmptyCondition(),
|
|
Diapasone.unlimited,
|
|
new JoinSpec[0]
|
|
) select int.Parse(stringId);
|
|
Category.LoadByIds(ids);
|
|
return ids;
|
|
}
|
|
)
|
|
let category = Category.LoadById(id)
|
|
orderby category.sortOrder, category.id
|
|
select category;
|
|
}
|
|
}
|
|
internal static void allCategories_Reset() {
|
|
Cache<IEnumerable<int>>.instance.delete(allCategories_Locker);
|
|
}
|
|
|
|
private readonly object subBoards_Locker = new object();
|
|
public IEnumerable<Board> subBoards {
|
|
get {
|
|
return
|
|
from id in Cache<IEnumerable<int>>.instance.get(
|
|
this.subBoards_Locker,
|
|
() => {
|
|
IEnumerable<int> ids = from stringId in Config.instance.mainConnection.LoadIdsByConditions(
|
|
Board.TableSpec.instance,
|
|
new FLocal.Core.DB.conditions.ComparisonCondition(
|
|
Board.TableSpec.instance.getColumnSpec(Board.TableSpec.FIELD_CATEGORYID),
|
|
FLocal.Core.DB.conditions.ComparisonType.EQUAL,
|
|
this.id.ToString()
|
|
),
|
|
Diapasone.unlimited,
|
|
new JoinSpec[0]
|
|
) select int.Parse(stringId);
|
|
Board.LoadByIds(ids);
|
|
return ids;
|
|
}
|
|
)
|
|
let board = Board.LoadById(id)
|
|
orderby board.sortOrder, board.id
|
|
select board;
|
|
}
|
|
}
|
|
|
|
public XElement exportToXmlForMainPage() {
|
|
return new XElement("category",
|
|
new XElement("name", this.name),
|
|
new XElement("sortOrder", this.sortOrder),
|
|
new XElement("boards", from board in this.subBoards select board.exportToXmlForMainPage())
|
|
);
|
|
}
|
|
|
|
}
|
|
}
|
|
|