mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update README.md
This commit is contained in:
parent
35ab5c84d6
commit
f936c8903a
64
README.md
64
README.md
@ -22,41 +22,41 @@ Install-Package sqlSugarCore
|
||||
All operations are based on SqlSugarClient
|
||||
```cs
|
||||
public List<Student> GetStudentList()
|
||||
{
|
||||
var db= GetInstance();
|
||||
var list= db.Queryable<Student>().ToList();//Search
|
||||
return list;
|
||||
}
|
||||
{
|
||||
var db= GetInstance();
|
||||
var list= db.Queryable<Student>().ToList();//Search
|
||||
return list;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Create SqlSugarClient
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
private SqlSugarClient GetInstance()
|
||||
/// <summary>
|
||||
/// Create SqlSugarClient
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
private SqlSugarClient GetInstance()
|
||||
{
|
||||
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
|
||||
{
|
||||
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
|
||||
{
|
||||
ConnectionString = "Server=.xxxxx",
|
||||
DbType = DbType.SqlServer,
|
||||
IsAutoCloseConnection = true,
|
||||
InitKeyType = InitKeyType.Attribute
|
||||
});
|
||||
//Print sql
|
||||
db.Aop.OnLogExecuting = (sql, pars) =>
|
||||
{
|
||||
Console.WriteLine(sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
|
||||
Console.WriteLine();
|
||||
};
|
||||
return db;
|
||||
}
|
||||
ConnectionString = "Server=.xxxxx",
|
||||
DbType = DbType.SqlServer,
|
||||
IsAutoCloseConnection = true,
|
||||
InitKeyType = InitKeyType.Attribute
|
||||
});
|
||||
//Print sql
|
||||
db.Aop.OnLogExecuting = (sql, pars) =>
|
||||
{
|
||||
Console.WriteLine(sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value)));
|
||||
Console.WriteLine();
|
||||
};
|
||||
return db;
|
||||
}
|
||||
|
||||
public class Student
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true]
|
||||
public int Id { get; set; }
|
||||
public int? SchoolId { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
public class Student
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true]
|
||||
public int Id { get; set; }
|
||||
public int? SchoolId { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
```
|
||||
|
||||
## SqlSugar's 16 Functions
|
||||
|
Loading…
Reference in New Issue
Block a user