Ejemplo n.º 1
0
 /// <summary>
 /// Used to get a unique string for this particular specification. The Generational key uses a MD5 of this value.
 /// </summary>
 /// <returns></returns>
 public override string ToString()
 {
     return(String.Format("Specification Type: {0}\nEntity Type: {1}\nPredicate: {2}\nFetchStrategy: {3}",
                          GetType().Name,
                          (typeof(T)).Name,
                          HashGenerator.FromPredicate(Predicate),
                          FetchStrategy
                          ));
 }