摘要:
use [database] select schema_name(t.schema_id) as [Schema], t.name as TableName,i.rows as [RowCount] from sys.tables as t, sysindexes as i where t.obj 阅读全文
摘要:
//delete one by id updateClient.Delete<Person>(d => d.Id(7)); //delete one by object updateClient.Delete<Person>(new Person() { }); //delete the Indic 阅读全文