コード例 #1
0
 public bool Equals(BeginModelMap other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.ModelType, ModelType));
 }
コード例 #2
0
 public bool Equals(BeginModelMap other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.ModelType, ModelType);
 }
コード例 #3
0
        public void Visit(BeginModelMap beginModelMap)
        {
            DataSet = _sessionCache.GetUserSession().CreateDataSet();

            _modelStack.Push(new ModelInformation { ModelType = beginModelMap.ModelType });
        }