mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update questdb bulkcopy
This commit is contained in:
parent
e756b928fc
commit
ec918466bc
@ -0,0 +1,34 @@
|
||||
using CsvHelper.Configuration;
|
||||
using CsvHelper.TypeConversion;
|
||||
using CsvHelper;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SqlSugar
|
||||
{
|
||||
public class CsvHelperEnumToIntConverter : ITypeConverter
|
||||
{
|
||||
public string ConvertToString(object value, IWriterRow row, MemberMapData memberMapData)
|
||||
{
|
||||
if (value == null)
|
||||
{
|
||||
return "null";
|
||||
}
|
||||
else if (value is Enum enumValue)
|
||||
{
|
||||
return (Convert.ToInt32(enumValue)).ToString();
|
||||
}
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
||||
public object ConvertFromString(string text, IReaderRow row, MemberMapData memberMapData)
|
||||
{
|
||||
if (int.TryParse(text, out int intValue))
|
||||
{
|
||||
return text;
|
||||
}
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
}
|
||||
}
|
@ -197,12 +197,18 @@ namespace SqlSugar
|
||||
private void CsvCreating<T>(CsvWriter csv) where T : class, new()
|
||||
{
|
||||
var entityColumns = db.EntityMaintenance.GetEntityInfo<T>().Columns;
|
||||
if (entityColumns.Any(it => it.IsIgnore))
|
||||
if (entityColumns.Any(it => it.IsIgnore||it.UnderType?.IsEnum==true))
|
||||
{
|
||||
var customMap = new DefaultClassMap<T>();
|
||||
foreach (var item in entityColumns.Where(it => !it.IsIgnore))
|
||||
{
|
||||
customMap.Map(typeof(T), item.PropertyInfo).Name(item.PropertyName);
|
||||
var memberMap = customMap.Map(typeof(T), item.PropertyInfo).Name(item.PropertyName);
|
||||
if (item.UnderType?.IsEnum==true
|
||||
&&item.SqlParameterDbType==null
|
||||
&&db.CurrentConnectionConfig?.MoreSettings?.TableEnumIsString!=true)
|
||||
{
|
||||
memberMap.TypeConverter<CsvHelperEnumToIntConverter>();
|
||||
}
|
||||
}
|
||||
csv.Context.RegisterClassMap(customMap);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user