コード例 #1
0
        /// <summary>Create a new ExcelStorage to work with the specified type</summary>
        /// <param name="recordType">The type of records.</param>
        public ExcelStorage(Type recordType)
        {
            mRecordType = recordType;
            mRecordInfo = DataStorage.CreateRecordInfo(recordType);

            // Temporary

            if (mRecordInfo.HasDateFields)
            {
                throw new NotImplementedException("For now the ExcelStorage don´t work with DateTime fields, sorry for the problems.");
            }
        }