This commit is contained in:
sunkaixuan
2017-02-26 20:58:07 +08:00
parent 6ce1fb07ec
commit b77b8d7850

View File

@@ -83,13 +83,6 @@ namespace SqlSugar
return reval;
}
public static ILambdaExpressions GetLambdaExpressions(IConnectionConfig currentConnectionConfig)
{
CheckConfig(currentConnectionConfig);
ILambdaExpressions reval = CreateInstance<ILambdaExpressions>(GetClassName(currentConnectionConfig.DbType, "LambdaExpressions"), currentConnectionConfig.DbType);
return reval;
}
private static string GetClassName(string type, string name)
{
return PubConst.AssemblyName + "." + type + name;