using System;
namespace SQLite
{
public class IgnoreAttribute : Attribute
{
public IgnoreAttribute()
{
}
}
public class PropertyIndexAttribute : Attribute
{
/// <summary>
/// 标识
/// </summary>
public int Index { get; set; }
/// <summary>
///
/// </summary>
/// <param name="index"></param>
public PropertyIndexAttribute(int index)
{
Index = index;
}
}
public class TimeAttribute : Attribute
{
}
}
-
潘栩锋 authored
2. 添加 SQLite 添加INDEX创建功能, 根据[Time] 的 DBKeepSize, 提速
08b3774a