示例#1
0
        internal static bool ContainsRow(CloudTable instanceTable, VertexTable entity)
        {
            var temp = GetAll(instanceTable);

            return(temp.Where(gn => entity.Equals(gn)).Count() > 0);
        }
示例#2
0
        /// <summary>
        /// Equals
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        public override bool Equals(object obj)
        {
            VertexTable other = obj as VertexTable;

            return(this.PartitionKey.Equals(other.PartitionKey) && this.RowKey.Equals(other.RowKey));
        }