我没有为 OleDbConnection、MySqlConnection、OdbcConnection 和 Db2Connection 维护几个不同的数据库访问层,而是试图找出一种使用泛型的方法。但是,当我尝试编译代码时出现错误,当我尝试访问类的方法或属性时出现错误。
public class DatabaseConnector<CONNECTION> {
private CONNECTION connection = default(CONNECTION);
public bool IsConnected {
get {
return (
this.connection != null &&
// error on connection.State on the following two lines
this.connection.State != System.Data.ConnectionState.Closed &&
this.connection.State != System.Data.ConnectionState.Broken
);
}
}
}
有没有办法解决?或者也许是另一个可以处理多个版本的类?