mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 18:48:09 +08:00
-
This commit is contained in:
@@ -140,7 +140,7 @@ namespace SqlSugar
|
|||||||
public virtual string GetPropertyTypeName(string dbTypeName)
|
public virtual string GetPropertyTypeName(string dbTypeName)
|
||||||
{
|
{
|
||||||
dbTypeName = dbTypeName.ToLower();
|
dbTypeName = dbTypeName.ToLower();
|
||||||
var propertyTypes = MappingTypes.Where(it => it.Key == dbTypeName);
|
var propertyTypes = MappingTypes.Where(it => it.Key.Equals(dbTypeName,StringComparison.CurrentCultureIgnoreCase));
|
||||||
if (dbTypeName == "int32")
|
if (dbTypeName == "int32")
|
||||||
{
|
{
|
||||||
return "int";
|
return "int";
|
||||||
|
Reference in New Issue
Block a user