Commit 18c01151 authored by simon.cropp's avatar simon.cropp

remove some unused properties

parent 593e2b63
......@@ -85,19 +85,12 @@ private static DbType LookupDbType(Type type)
private class Identity : IEquatable<Identity>
{
public String ConnectionString { get { return connectionString; } }
public Type Type { get { return type; } }
public Type Type2 { get { return Type2; } }
public string Sql { get { return sql; } }
public Type ParametersType { get { return ParametersType; } }
internal Identity(string sql, IDbConnection cnn, Type type, Type parametersType, Type[] otherTypes = null)
{
this.sql = sql;
this.connectionString = cnn.ConnectionString;
this.type = type;
this.parametersType = parametersType;
this.otherTypes = otherTypes;
unchecked
{
hashCode = 17; // we *know* we are using this in a dictionary, so pre-compute this
......@@ -121,7 +114,6 @@ public override bool Equals(object obj)
private readonly string sql;
private readonly int hashCode;
private readonly Type type;
private readonly Type[] otherTypes;
private readonly string connectionString;
private readonly Type parametersType;
public override int GetHashCode()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment