示例#1
0
        public void NotSupportedClasses()
        {
            KeyCollection keys = new KeyCollection(null, new Type[] { typeof(Int32Key), typeof(GuidKey) });

            keys.Add(StringKey.Create("1", "PriceList"));
        }
示例#2
0
        public void NotSupportedClassesForEmptyKey()
        {
            KeyCollection keys = new KeyCollection(null, new Type[] { typeof(Int32Key), typeof(GuidKey) });

            keys.Add(StringKey.Empty("PriceList"));
        }
示例#3
0
        public void NotSupportedTypesForEmptyKey()
        {
            KeyCollection keys = new KeyCollection(new string[] { "Product", "Category" });

            keys.Add(StringKey.Empty("PriceList"));
        }