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
18 lines
340 B
using Apewer;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace Apewer.Source
|
|
{
|
|
|
|
/// <summary>数据库客户端。</summary>
|
|
public interface IDbClient : IDisposable, IDbAdo, IDbOrm
|
|
{
|
|
|
|
/// <summary>获取或设置日志记录器。</summary>
|
|
Logger Logger { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|