You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
537 B
16 lines
537 B
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class CacheKey
|
|
{
|
|
public string Database { get; set; }
|
|
public List<string> Tables { get; set; }
|
|
public List<string> IdentificationList { get; set; }
|
|
public new string ToString()
|
|
{
|
|
return "SqlSugarDataCache" + UtilConstants.Dot + string.Join(UtilConstants.Dot, this.Tables) +UtilConstants.Dot+ string.Join(UtilConstants.Dot, this.IdentificationList.Where(it=>it.HasValue()));
|
|
}
|
|
}
|
|
}
|