Пример #1
0
		private static ArrayList GetFieldsForAllClass()
		{
			ClassPropertiesTable classPropTable = null;
			try
			{
				classPropTable = dbInteraction.GetClassProperties(Helper.ClassName);
			}
			catch (Exception oEx)
			{
				LoggingHelper.ShowMessage(oEx);
			}

			return classPropTable.FieldEntries;
		}
Пример #2
0
        public static void SetIndexedConfiguration(ArrayList fieldname, string className, ArrayList isIndexed)
        {
            ClassPropertiesTable classtable = new ClassPropertiesTable(className);

            classtable.SetIndex(fieldname, className, isIndexed);
        }
Пример #3
0
        public static ClassPropertiesTable GetClassProperties(string classname)
        {
            ClassPropertiesTable classtable = new ClassPropertiesTable(classname);

            return(classtable.GetClassProperties());
        }