123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SqlSugar
- {
- public partial class FastestProvider<T> : IFastest<T> where T : class, new()
- {
- private string AsName { get; set; }
- private int Size { get; set; }
- private string CacheKey { get; set; }
- private string CacheKeyLike { get; set; }
- private string CharacterSet { get; set; }
- private bool IsDataAop { get; set; }
- private bool IsOffIdentity { get; set; }
- public IFastest<T> SetCharacterSet(string CharacterSet)
- {
- this.CharacterSet = CharacterSet;
- return this;
- }
- public IFastest<T> EnableDataAop()
- {
- this.IsDataAop = true;
- return this;
- }
- public IFastest<T> RemoveDataCache()
- {
- CacheKey = typeof(T).FullName;
- return this;
- }
- public IFastest<T> RemoveDataCache(string cacheKey)
- {
- CacheKeyLike = this.context.EntityMaintenance.GetTableName<T>();
- return this;
- }
- public IFastest<T> AS(string tableName)
- {
- this.AsName = tableName;
- return this;
- }
- public IFastest<T> PageSize(int size)
- {
- this.Size = size;
- return this;
- }
- public IFastest<T> OffIdentity()
- {
- this.IsOffIdentity = true;
- return this;
- }
- public SplitFastest<T> SplitTable()
- {
- SplitFastest<T> result = new SplitFastest<T>();
- result.FastestProvider = this;
- return result;
- }
- }
- }
|