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