65 lines
1.5 KiB
C#
65 lines
1.5 KiB
C#
/**本脚本为自动生成,每次生成会覆盖!请勿手动修改**/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NBF
|
|
{
|
|
[Serializable]
|
|
public partial class GameLines
|
|
{
|
|
private static ConfigContext<GameLines> _context;
|
|
|
|
private static ConfigContext<GameLines> Context => _context ??= Configs.Table<GameLines>();
|
|
|
|
public static GameLines Get(int key)
|
|
{
|
|
return Context.Get(key);
|
|
}
|
|
|
|
public static GameLines Get(Predicate<GameLines> match)
|
|
{
|
|
return Context.Get(match);
|
|
}
|
|
|
|
public static GameLines Fist()
|
|
{
|
|
return Context.Fist();
|
|
}
|
|
|
|
public static GameLines Last()
|
|
{
|
|
return Context.Last();
|
|
}
|
|
|
|
public static GameLines Fist(Predicate<GameLines> match)
|
|
{
|
|
return Context.Fist(match);
|
|
}
|
|
|
|
public static GameLines Last(Predicate<GameLines> match)
|
|
{
|
|
return Context.Last(match);
|
|
}
|
|
|
|
public static int Count()
|
|
{
|
|
return Context.Count();
|
|
}
|
|
|
|
public static int Count(Func<GameLines, bool> predicate)
|
|
{
|
|
return Context.Count(predicate);
|
|
}
|
|
|
|
|
|
public static List<GameLines> GetList()
|
|
{
|
|
return Context.GetList();
|
|
}
|
|
|
|
public static List<GameLines> GetList(Predicate<GameLines> match)
|
|
{
|
|
return Context.GetList(match);
|
|
}
|
|
}
|
|
} |