mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 17:20:49 +08:00 
			
		
		
		
	> 注意:尽量不要使用带点的表名,只有 MySql/Sqlite 对此类表名支持 CodeFirst。但是它不影响 CRUD 功能,使用 [Table(Name = "`sys.config`")] 解决
		
			
				
	
	
		
			32 lines
		
	
	
		
			762 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			762 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using FreeSql.Internal;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Data;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace FreeSql.MsAccess.Curd
 | 
						|
{
 | 
						|
 | 
						|
    class MsAccessDelete<T1> : Internal.CommonProvider.DeleteProvider<T1> where T1 : class
 | 
						|
    {
 | 
						|
        public MsAccessDelete(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression, object dywhere)
 | 
						|
            : base(orm, commonUtils, commonExpression, dywhere)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        public override List<T1> ExecuteDeleted()
 | 
						|
        {
 | 
						|
            throw new NotImplementedException();
 | 
						|
        }
 | 
						|
 | 
						|
#if net40
 | 
						|
#else
 | 
						|
        public override Task<List<T1>> ExecuteDeletedAsync()
 | 
						|
        {
 | 
						|
            throw new NotImplementedException();
 | 
						|
        }
 | 
						|
#endif
 | 
						|
    }
 | 
						|
}
 |