mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-24 07:22:57 +08:00
-
This commit is contained in:
parent
105894743b
commit
b64a5d187c
@ -7,6 +7,12 @@ using System.Reflection;
|
|||||||
using System.Reflection.Emit;
|
using System.Reflection.Emit;
|
||||||
namespace SqlSugar
|
namespace SqlSugar
|
||||||
{
|
{
|
||||||
|
///<summary>
|
||||||
|
/// ** description:IDataReader Entity Builder
|
||||||
|
/// ** author:sunkaixuan
|
||||||
|
/// ** date:2017/4/2
|
||||||
|
/// ** qq:610262374
|
||||||
|
/// </summary>
|
||||||
public partial class IDataReaderEntityBuilder<T>
|
public partial class IDataReaderEntityBuilder<T>
|
||||||
{
|
{
|
||||||
private SqlSugarClient Context = null;
|
private SqlSugarClient Context = null;
|
||||||
@ -91,7 +97,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
if (propertyInfo.PropertyType.IsClass())
|
if (propertyInfo.PropertyType.IsClass())
|
||||||
{
|
{
|
||||||
BindClass(generator, result, propertyInfo);
|
BindClass(generator, result, propertyInfo);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -107,7 +113,7 @@ namespace SqlSugar
|
|||||||
private void BindClass(ILGenerator generator, LocalBuilder result, PropertyInfo propertyInfo)
|
private void BindClass(ILGenerator generator, LocalBuilder result, PropertyInfo propertyInfo)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
private void BindField(ILGenerator generator, LocalBuilder result, PropertyInfo propertyInfo, string fileName)
|
private void BindField(ILGenerator generator, LocalBuilder result, PropertyInfo propertyInfo, string fileName)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user