大于100万条数据时,默认不启用数字型主键降序
智能大石头 authored at 2025-07-14 17:09:34
346.00 B
NewLife.Cube
using System;
using System.Collections.Generic;
using NewLife.Data;

namespace NewLife.Cube.Extensions
{
    class ItemsExtend : IExtend
    {
        public IDictionary<Object, Object> Items { get; set; }

        public Object this[String key]
        {
            get => Items[key];
            set => Items[key] = value;
        }
    }
}