IBE.SQL.EliteDBIO.ImportSystems_Own C# (CSharp) Method

ImportSystems_Own() public method

imports the own data from the file into the database (only initially once needed)
public ImportSystems_Own ( String Filename, System.Boolean OnlyAddUnknown = false ) : Int32>.Dictionary
Filename String
OnlyAddUnknown System.Boolean
return Int32>.Dictionary
        public Dictionary<Int32, Int32> ImportSystems_Own(String Filename, Boolean OnlyAddUnknown = false)
        {
            try
            {
                List<EDSystem> SystemList = JsonConvert.DeserializeObject<List<EDSystem>>(File.ReadAllText(Filename));
                return ImportSystems_Own(ref SystemList, OnlyAddUnknown);
            }
            catch (Exception ex)
            {
                throw new Exception("Error in <ImportSystems_Own> from file", ex);
            }
        }
            

Same methods

EliteDBIO::ImportSystems_Own ( EDSystem System, System.Boolean OnlyAddUnknown = false, System.Boolean setVisitedFlag = false ) : Int32>.Dictionary
EliteDBIO::ImportSystems_Own ( List &Systems, System.Boolean OnlyAddUnknown = false, System.Boolean setVisitedFlag = false ) : Int32>.Dictionary