mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-30 20:57:58 +08:00
65 lines
2.3 KiB
C#
65 lines
2.3 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
namespace SqlSugar
|
||
{
|
||
internal static partial class ErrorMessage
|
||
{
|
||
internal static LanguageType SugarLanguageType { get; set; } = LanguageType.Default;
|
||
internal static string ObjNotExist
|
||
{
|
||
get
|
||
{
|
||
return GetThrowMessage("{0} does not exist.",
|
||
"{0}不存在。");
|
||
}
|
||
}
|
||
internal static string EntityMappingError
|
||
{
|
||
get
|
||
{
|
||
return GetThrowMessage("Entity mapping error.{0}",
|
||
"Select 实体与表映射出错,可以注释实体类中的字段排查具体哪一个字段。【注意:如果用CodeFirt先配置禁止删列或更新】 {0}");
|
||
}
|
||
}
|
||
|
||
public static string NotSupportedDictionary
|
||
{
|
||
get
|
||
{
|
||
return GetThrowMessage("This type of Dictionary is not supported for the time being. You can try Dictionary<string, string>, or contact the author!!",
|
||
"暂时不支持该类型的Dictionary 你可以试试 Dictionary<string ,string>或者联系作者!!");
|
||
}
|
||
}
|
||
|
||
public static string NotSupportedArray
|
||
{
|
||
get
|
||
{
|
||
return GetThrowMessage("This type of Array is not supported for the time being. You can try object[] or contact the author!!",
|
||
"暂时不支持该类型的Array 你可以试试 object[] 或者联系作者!!");
|
||
}
|
||
}
|
||
|
||
internal static string GetThrowMessage(string enMessage, string cnMessage, params string[] args)
|
||
{
|
||
if (SugarLanguageType == LanguageType.Default)
|
||
{
|
||
List<string> formatArgs = new List<string>() { enMessage, cnMessage };
|
||
formatArgs.AddRange(args);
|
||
return string.Format(@"中文提示 : {1}
|
||
English Message : {0}", formatArgs.ToArray());
|
||
}
|
||
else if (SugarLanguageType == LanguageType.English)
|
||
{
|
||
return enMessage;
|
||
}
|
||
else
|
||
{
|
||
return cnMessage;
|
||
}
|
||
}
|
||
}
|
||
}
|