sqlsugar/Src/OracleUS7ASCII/SqlSugar/Interface/ISugarDataConverter.cs

17 lines
374 B
C#
Raw Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public interface ISugarDataConverter
{
SugarParameter ParameterConverter<T>(object columnValue, int columnIndex);
T QueryConverter<T>(IDataRecord dataRecord, int dataRecordIndex);
}
}