mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 17:20:49 +08:00 
			
		
		
		
	- 增加 IFreeSql.InsertOrUpdate 方法 #316
This commit is contained in:
		@@ -24,6 +24,7 @@ namespace FreeSql.MsAccess
 | 
			
		||||
        public IUpdate<T1> Update<T1>(object dywhere) where T1 : class => new MsAccessUpdate<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, dywhere);
 | 
			
		||||
        public IDelete<T1> Delete<T1>() where T1 : class => new MsAccessDelete<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, null);
 | 
			
		||||
        public IDelete<T1> Delete<T1>(object dywhere) where T1 : class => new MsAccessDelete<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, dywhere);
 | 
			
		||||
        public IInsertOrUpdate<T1> InsertOrUpdate<T1>() where T1 : class => throw new NotImplementedException();
 | 
			
		||||
 | 
			
		||||
        public IAdo Ado { get; }
 | 
			
		||||
        public IAop Aop { get; }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user