mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update demo
This commit is contained in:
parent
077d833d48
commit
e85c72935c
@ -2,7 +2,7 @@
|
||||
<package >
|
||||
<metadata>
|
||||
<id>SqlSugarCore</id>
|
||||
<version>5.1.4.171</version>
|
||||
<version>5.1.4.172-preview01</version>
|
||||
<authors>sunkaixuan</authors>
|
||||
<owners>果糖大数据科技</owners>
|
||||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
||||
|
@ -94,7 +94,7 @@ namespace XuguTest
|
||||
|
||||
}).ExecuteCommand();
|
||||
|
||||
db.Insertable(new T_User2() { number = 1 }).ExecuteCommand();
|
||||
db.Insertable(new T_User2() { number = 1, table="a" }).ExecuteCommand();
|
||||
|
||||
// var list0=db.Ado.GetDataTable("select * from MY_USER");
|
||||
|
||||
|
@ -6,10 +6,14 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Data.Model
|
||||
{
|
||||
[SqlSugar.SugarTable("T_User222")]
|
||||
[SqlSugar.SugarTable("T_User2222")]
|
||||
public class T_User2
|
||||
{
|
||||
[SqlSugar.SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
|
||||
public int id { get; set; }
|
||||
[SqlSugar.SugarColumn(DefaultValue = "0", ColumnDescription = "aaa")]
|
||||
public int number { get; set; }
|
||||
|
||||
public string table { get; set; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user