mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-29 19:56:43 +08:00
25 lines
790 B
C#
25 lines
790 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class StackTraceInfo
|
|
{
|
|
public string FirstFileName { get { return this.MyStackTraceList.First().FileName; } }
|
|
public string FirstMethodName { get { return this.MyStackTraceList.First().MethodName; } }
|
|
public int FirstLine { get { return this.MyStackTraceList.First().Line; } }
|
|
|
|
public List<StackTraceInfoItem> MyStackTraceList { get; set; }
|
|
public List<StackTraceInfoItem> SugarStackTraceList { get; set; }
|
|
}
|
|
public class StackTraceInfoItem
|
|
{
|
|
public string FileName { get; set; }
|
|
public string MethodName { get; set; }
|
|
public int Line { get; set; }
|
|
}
|
|
}
|