EFCore之SQL扩展组件BeetleX.EFCore.Extension

    EFCore是.NETCore团队开发的一个ORM组件,但这个组件在执行传统SQL的时候并不方便,因此BeetleX.EFCore.Extension的设计目的是让EFCore执行传统SQL更简单方便。

引用

在使用组件之前需要引用它,可以通过以下地址获取最新版本:https://www.nuget.org/packages/BeetleX.EFCore.Extension/

使用

引用组件后就可以使用,组件的操作操作都是针对EFCore的DBContext对象来进行数据库操作。

SQL sql = “select * from employees”;
var employees = sql.List<Employee, NorthwindContext>();
组件提供SQL对象用来操作传统的SQL语句,以上代码是在NorthwindContext数据库上执行查询语句并返回相关信息列表。

sql = “select * from customers where country=@country”;
sql += ("@country", “UK”);
var customers = sql.List<Customer, NorthwindContext>();
以上是针对参数化的SQL处理,在操作上DBContext可以通过泛参传入或通过实例以变量的参数传入,通过泛参传入的好处是不用实例化DBContext。

批量更新

在EFCore更新某个条件的字段信息操作起来比较麻烦,所以组件也扩展出相关方法来解决。

using (NorthwindContext db = new NorthwindContext())
{
    db.Customers.Where(c => c.CustomerID == "ken")
        .Update(c => new Customer { City="GZ" });
}

以上操作是把国家是UK的所有记录Region改成uk

批量删除

同样EFCore在批条件删除上也不怎么方便,组件同样也在DBSet的基础上扩展了Delete批删除方法.

    using (NorthwindContext db = new NorthwindContext())
    {
        db.Customers.Where(c => c.CustomerID == "ken")
            .Delete();
    }

以上是删除国家是UK的所有记录.

Select对象

Select对象是针对单个表的个性查询需求制定的,它可以定义查询不同的定段和条件来返回到指定的对象中。

复制代码
class CustomerName
{
public string CustomerID { get; set; }
public string CompanyName { get; set; }
}
[Fact]

Select select = new Select(“CustomerID”, “CompanyName”);
select &= c => c.Country == “UK”;
var items = select.List<CustomerName, NorthwindContext>();
复制代码
以上是针对客户信息查询一些字段并返回到其他结构的对象列表中。

SQL对象

为了让字符的Sql语句处理更方便,所以组针对Sql语句封了一个对象。该对象主要用于执行Sql语句并返回结果,它的主要作用是简单化DbCommand的处理。在这基础上提供参数化处理,查询支持返回固定类型和动态类型,支持同步和异步操作等。

定义对象

该对象支持直接从String转义,所以在定义的时候可以直接指向一个Sql的字符串。

SQL sql = “select * from customers”;
以上是定义一个客户查询的SQL对象,定义完成后就可以进行相关查询操作,它提供了Execute,ExecuteScalar,ListFirst和List方法,分别是返回符合查询的第一个对象和返回符查询条件某个区中的对象;以上两个方法都支持异步ExecuteAsync,ExecuteScalarAsync,ListFirstAsync和ListAsync,并支持多个重载版本可操作。

ListFirst

public T ListFirst<T, DB>() where DB : DbContext, new()
public T ListFirst(DbContext db) where T : new()
public Task ListFirstAsync<T, DB>() where DB : DbContext, new()
where T : new()
public async Task ListFirstAsync(DbContext db) where T : new()
T可以是任意对象类型,组件会自动做字段和属性匹配;DbContext支持两种方式提供,一种基于泛参在这情况下对应DbContext必须提供默认构建函数;别一种则直接通参数传入对应的实例对象。

List

复制代码
public IList List<T, DB>(Region region = null) where T : new()
where DB : DbContext, new()
public IList List(DbContext db, Region region = null)
where T : new()
public void List(DbContext db, Region region, Action handler)
public async Task<IList> ListAsync<T, DB>(Region region = null)
where T : new()
where DB : DbContext, new()
public async Task<IList> ListAsync(DbContext db, Region region = null)
where T : new()
public async Task ListAsync(DbContext db, Region region, Action handler)
复制代码
T可以是任意对象类型,组件会自动做字段和属性匹配;DbContext支持两种方式提供,一种基于泛参在这情况下对应DbContext必须提供默认构建函数;别一种则直接通参数传入对应的实例对象。region是缺省参数用于指定加载那个区间的数据,默认不指定的情况下组件只加载100条数据。

SQL sql = “select * from customers”;
var customers = sql.List<Customer, NorthwindContext>();
customers = await sql.ListAsync<Customer, NorthwindContext>();
动态类型

有很多时候只查询个别字段,但又不可以定义相关结构对象的情况下可以使用动态类型传入.

复制代码
SQL sql = “select CustomerID,CompanyName from customers”;
var items=sql.List<ExpandoObject, NorthwindContext>();
foreach(dynamic item in items)
{
Console.WriteLine(item.CustomerID);
}
复制代码
可以通过ExpandoObject作为动态类型对象传入,后继通过dynamic定义操作即可.

分页获取

虽然在查询过程中提供了Region参数用于获取某个区间的数据,但在分页应用中还是需要统计总数和页数的处理,为了简化这个操作组件封了DBRegionData对象来简化这操作.

复制代码
SQL sql = “select * from customers”;
DBRegionData region = new DBRegionData(0, 20);
await region.ExecuteAsync(sql);
foreach (var item in region.Items)
{
Console.WriteLine(item.CompanyName);
}
复制代码
以上示例是按20条来分页,获取第一页的数据。DBRegionData提供了Count,Pages,Index和Items等属性可提供访问。
拼装和参数化

在编写Sql语句的时候往往都不能一条写完,很多时候针对不同的条件来组装语句;SQL对象重写了运算符直接支持和String相加的处理。

SQL sql = “select * from customers where 1=1”;
sql += " and country=@country";
sql += ("@country", “UK”);
Console.WriteLine(sql.Count());
SQL支持和String直接相加,参数变量也是通过加的方式来添加,只是对应参数必须以ValueTask<string,object>的方式编写。

表达式条件

对于直接用String来拼接Sql语句容易出错,那可以采用对象提供的表达式来进行条件增加处理;这种处理方式的好处是不容易写错字段名称和参数化的处理。

SQL sql = “select * from orders where 1=1”;
sql.And().Where((o) => o.EmployeeID == 3 && o.CustomerID == “henry”);
对象提供了Where方法来编写条件表达式,该表达式支持多类型传入处理。

SQL sql = “select * from orders where 1=1”;
sql.And().Where((o) => o.EmployeeID == 3 && o.CustomerID == “henry”);
sql.OrderBy(o => o.OrderDate.ASC());
同样排序方式也可以通过表达式的方式来添加.

转义对象

DBObjectList,DBValueListDBExecute和DBExecute都支持转义操作,对应的结构是ValueTuple<DbContext, SQL>.在转义过程中组件可支持执行处理。

复制代码
using (NorthwindContext db = new NorthwindContext())
{
SQL sql = “select * from customers”;
DBObjectList customers = (db, sql);

sql = “select CustomerID,CompanyName from customers”;
DBObjectList names = (db, sql);

sql = “select count(*) from customers”;
DBValueList count = (db, sql);
}
复制代码
事务

SQL对象无须针对事务做任何设置,它的事务开启主要是由对应的DbContext对象所决定的。

执行链跟踪

在新版中添加了执行跟踪链,可以进一步查看组件执行SQL的情况。
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1038
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1037
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1036
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1035
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1034
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1033
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1032
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1031
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1030
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1029
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1028
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1027
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1026
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1025
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1024
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1023
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1022
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1021
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1020
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1019
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1018
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1017
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1016
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1015
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1014
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1013
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1012
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1011
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1010
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1009
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1008
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1007
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1006
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1005
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1004
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1003
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1002
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1001
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1000
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=999
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=998
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=997
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=996
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=995
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=994
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=993
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=992
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=991
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=990
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=989
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=988
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=987
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=986
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=985
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=984
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=983
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=982
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=981
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=980
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=979
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=978
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=977
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=976
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=975
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=974
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=973
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=972
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=971
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=970
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=969
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=968
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=967
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=966
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=965
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=964
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=963
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=962
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=961
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=960
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=959
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=958
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=957
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=956
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=955
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=954
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=953
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=952
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=951
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=950
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=949
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=948
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=947
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=946
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=945
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=944
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=943
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=942
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=941
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=940
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=939
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=938
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=937
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=936
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=935
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=934
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=933
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=932
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=931
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=930
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=929
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=928
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=927
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=926
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=925
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=924
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=923
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=922
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=921
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=920
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=919
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=918
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=917
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=916
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=915
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=914
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=913
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=912
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=911
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=910
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=909
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=908
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=907
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=906
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=905
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=904
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=903
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=902
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=901
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=900
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=899
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=898
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=897
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=896
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=895
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=894
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=893
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=892
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=891
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=890
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=889
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=888
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=887
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=886
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=885
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=884
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=883
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=882
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=881
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=880
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=879
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=878
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=877
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=876
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=875
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=874
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=873
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=872
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=871
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=870
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=869
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=868
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=867
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=866
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=865
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=864
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=863
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=862
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=861
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=860
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=859
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=858
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=857
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=856
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=855
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=854
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=853
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=852
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=851
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=850
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=849
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=848
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=847
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=846
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=845
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=844
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=843
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=842
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=841
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=840
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=839
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=838
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=837
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=836
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=835
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=834
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=833
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=832
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=831
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=830
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=829
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=828
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=827
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=826
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=825
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=824
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=823
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=822
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=821
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=820
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=819
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=818
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=817
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=816
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=815
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=814
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=813
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=812
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=811
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=810
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=809
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=808
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=807
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=806
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=805
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=804
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=803
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=802
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=801
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=800
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=799
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=798
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=797
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=796
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=795
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=794
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=793
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=792
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=791
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=790
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=789
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=788
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=787
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=786
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=785
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=784
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=783
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=782
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=781
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=780
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=779
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=778
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=777
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=776
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=775
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=774
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=773
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=772
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=771
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=770
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=769
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=768
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=767
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=766
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=765
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=764
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=763
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=762
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=761
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=760
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=759
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=758
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=757
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=756
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=755
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=754
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=753
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=752
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=751
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=750
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=749
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=748
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=747
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=746
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=745
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=744
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=743
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=742
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=741
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=740
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=739
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=738
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=737
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=736
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=735
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=734
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=733
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=732
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=731
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=730
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=729
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=728
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=727
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=726
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=725
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=724
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=723
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=722
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=721
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=720
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=719
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=718
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=717
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=716
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=715
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=714
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=713
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=712
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=711
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=710
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=709
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=708
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=707
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=706
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=705
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=704
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=703
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=702
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=701
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=700
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=699
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=698
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=697
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=696
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=695
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=694
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=693
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=692
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=691
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=690
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=689
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=688
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=687
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=686
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=685
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=684
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=683
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=682
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=681
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=680
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=679
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=678
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=677
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=676
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=675
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=674
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=673
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=672
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=671
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=670
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=669
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=668
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=667
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=666
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=665
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=664
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=663
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=662
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=661
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=660
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=659
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=658
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=657
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=656
复制代码
using (CodeTrackFactory.TrackReport(“AutoExecute”, CodeTrackLevel.Bussiness, null, “EFCore”, “BeetleX”))
{
using (NorthwindContext db = new NorthwindContext())
{
DBValueList values = (db, “select customerid from customers”);
DBObjectList items = (db, “select CustomerID,CompanyName from customers”);
DBExecute id = (db, “select CompanyName from customers where CustomerID=‘ALFKI’”);
var item = db.Customers.Where(c => c.CustomerID == “AROUT”).FirstOrDefault();
item.Region = “GuangZhou”;
db.SaveChanges();
}
}
Console.WriteLine(CodeTrackFactory.Activity?.GetReport());

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值