You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
340 B

4 years ago
  1. using Apewer;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. namespace Apewer.Source
  6. {
  7. /// <summary>数据库客户端。</summary>
  8. public interface IDbClient : IDisposable, IDbAdo, IDbOrm
  9. {
  10. /// <summary>获取或设置日志记录器。</summary>
  11. Logger Logger { get; set; }
  12. }
  13. }