Wednesday, May 13, 2020

Export array of data to excel in C#

Most of the time, we need to deal with data that also need to export to excel. So, the following method can export your string array to excel. lets have a look :

     public static bool ExportArrayToExcel(List<string[]> data, string filename, string[] headers=null, bool flOpenFile = false)  
     {  
       bool flExported = false;  
       try  
       {  
         SaveFileDialog sfd = new SaveFileDialog();  
         sfd.Filter = "Excel Documents (*.xls)|*.xls";  
         sfd.FileName = filename;  
         if (sfd.ShowDialog() == DialogResult.OK)  
         {  
           string stOutput = "";  
           string sHeaders = "";  
           if (headers.Count() > 0)  
           {  
             for (int j = 0; j < headers.Count(); j++)  
               sHeaders = sHeaders.ToString() + Convert.ToString(headers[j]) + "\t";  
             stOutput += sHeaders + "\r\n";  
           }  
           for (int i = 0; i < data.Count; i++)  
           {  
             string stLine = "";  
             for (int j = 0; j < data[i].Count(); j++)  
               stLine = stLine.ToString() + Convert.ToString(data[i][j]) + "\t";  
             stOutput += stLine + "\r\n";  
           }  
           Encoding utf16 = Encoding.GetEncoding(1254);  
           byte[] output = utf16.GetBytes(stOutput);  
           FileStream fs = new FileStream(sfd.FileName, FileMode.Create);  
           BinaryWriter bw = new BinaryWriter(fs);  
           bw.Write(output, 0, output.Length);   
           bw.Flush();  
           bw.Close();  
           fs.Close();  
           if (flOpenFile)  
           {  
             Process.Start(sfd.FileName);  
           }  
         }  
       }  
       catch (Exception)  
       {  
         throw;  
       }  
       return flExported;  
     }  

copy and paste and try.

happy coding..

Monday, May 4, 2020

C# MongoDB Data Access Layer Explained

In our previous post, we discussed about writing a data access layer for mongodb. So, let's discuss a bit about each method.

     public bool Insert<T>(T RecordToInsert)  
     {  
       return Insert<T>(typeof(T).Name, RecordToInsert);  
     }  
     public bool Insert<T>(string TableName, T RecordToInsert)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       collection.InsertOne(RecordToInsert);  
       return true;  
     } 

This methods are used to insert records to a specific collection. The T is a generic type which you can pass any entity. For example, lets say you have a Person class. and you are going to add a new person. So what you need is to pass the Person object  to this method. Normally collections are named as the class name so that it's not going to be clear.

 public bool Insert(Person p)  
     {  
       return dal.Insert(p);         
     }  

The sample Person class will looks like below. You must have the
[BsonId]      
     public ObjectId _id { get; set; } 

so that the MongoDB can keep the unique code generated upon saving a new person.

   public class Person  
   {  
     private int _idPerson;  
     private string _mobileNumber;  
     private string _lastName;  
     private string _firstName;  
     private string _username;  
     private string _password;  
     private DateTime _lastModified;  
     [BsonId]      
     public ObjectId _id { get; set; }  
     public int IdPerson  
     {  
       get { return _idPerson; }  
       set { _idPerson = value; }  
     }  
     public string FirstName  
     {  
       get { return _firstName; }  
       set { _firstName = value; }  
     }      
     public string LastName  
     {  
       get { return _lastName; }  
       set { _lastName = value; }  
     }  
     public string MobileNumber  
     {  
       get { return _mobileNumber; }  
       set { _mobileNumber = value; }  
     }  
     public string Username  
     {  
       get { return _username; }  
       set { _username = value; }  
     }  
     public string Password  
     {  
       get { return _password; }  
       set { _password = value; }  
     }      
     public DateTime LastModified  
     {  
       get { return _lastModified; }  
       set { _lastModified = value; }  
     }      
   }  

Lets see how we can use replace function to update/replace a specific record.

     public bool Replace<T>(T RecordToUpsert, string UpdateColumnName, BsonValue WhereValue)  
     {  
       return Replace<T>(typeof(T).Name, RecordToUpsert, UpdateColumnName, WhereValue);  
     }  
     public bool Replace<T>(string TableName, T RecordToUpsert, string UpdateColumnName, BsonValue WhereValue)  
     {  
       Connect();  
       var filter = Builders<T>.Filter.Eq(UpdateColumnName, WhereValue);        
       var collection = mongoDatabase.GetCollection<T>(TableName);        
       var result = collection.ReplaceOne(filter, RecordToUpsert);  
       return result.IsAcknowledged;  
     }  

This 2 methods will help with our update / replace of persons as below.

     public bool Replace(Person p)  
     {  
       return dal.Replace(p, "IdPerson", p.IdPerson);  
     }  

Here we have the p as Person object that has all the existing and modified data. Also we use IdPerson as the key to update the person.

So, the deletion is done as below.
     public void Delete<T>(BsonValue WhereValue)  
     {  
       Delete<T>(typeof(T).Name, "_id", WhereValue);  
     }  
     public void Delete<T>(string DeleteColumnName, BsonValue WhereValue)  
     {  
       Delete<T>(typeof(T).Name, DeleteColumnName, WhereValue);  
     }      
     public void Delete<T>(string TableName, string DeleteColumnName, BsonValue WhereValue)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       var filter = Builders<T>.Filter.Eq(DeleteColumnName, WhereValue);  
       collection.DeleteOne(filter);  
     }

So, you can either use _id which is MongoDB ID value of  the record to delete or you can pass a matching attribute with it's value to delete.

Finally, the selection can be done like this;

     public List<T> Select<T>()  
     {  
       return Select<T>(typeof(T).Name);  
     }  
     public List<T> Select<T>(string TableName)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       return collection.Find(new BsonDocument()).ToList();  
     }  
     public List<T> Select<T>(BsonValue WhereValue, string SelectColumnName = null)  
     {  
       Connect();  
       if (string.IsNullOrEmpty(SelectColumnName))  
         SelectColumnName = "_id";  
       return Select<T>(typeof(T).Name, SelectColumnName, WhereValue);  
     }  
     public List<T> Select<T>(string TableName, string SelectColumnName, BsonValue WhereValue)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       var filter = Builders<T>.Filter.Eq(SelectColumnName, WhereValue);  
       return collection.Find(filter).ToList();  
     }

Methods can  be used as ;

     public List<Person> Select()  
     {  
       return dal.Select<Person>();  
     }  

The matching type Person will return a list of persons from the collection.

So, try using these methods and if any let me know.
Happy coding...




Sunday, May 3, 2020

C# Mongodb Data Access Layer

As we have discussed in our previous post, lets focus on a working data access layer that we can use for our mongodb database.

As a collection based database, it's a bit different as how we should deal with records (collections) here. Let's have a look at the code.

 public class MongoDBCRUD  
   {  
     MongoClient client;  
     private IMongoDatabase mongoDatabase;  
     string DBMaster, DBName;  
     public MongoDBCRUD()  
     {  
     }  
     public MongoDBCRUD(string MasterDatabase)  
     {  
       DBMaster = MasterDatabase;  
     }  
     private void Connect()  
     {        
       DBName = DBMaster ?? (Common.DBName != null ? Common.DBName.ToString() : string.Empty);  
       if (!string.IsNullOrEmpty(Common.ConString))  
         client = new MongoClient(Common.ConString);  
       if (!string.IsNullOrEmpty(DBName))  
         mongoDatabase = client.GetDatabase(DBName);  
     }  
     public bool Insert<T>(T RecordToInsert)  
     {  
       return Insert<T>(typeof(T).Name, RecordToInsert);  
     }  
     public bool Insert<T>(string TableName, T RecordToInsert)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       collection.InsertOne(RecordToInsert);  
       return true;  
     }  
     public bool Replace<T>(T RecordToUpsert, string UpdateColumnName, BsonValue WhereValue)  
     {  
       return Replace<T>(typeof(T).Name, RecordToUpsert, UpdateColumnName, WhereValue);  
     }  
     public bool Replace<T>(string TableName, T RecordToUpsert, string UpdateColumnName, BsonValue WhereValue)  
     {  
       Connect();  
       var filter = Builders<T>.Filter.Eq(UpdateColumnName, WhereValue);        
       var collection = mongoDatabase.GetCollection<T>(TableName);        
       var result = collection.ReplaceOne(filter, RecordToUpsert);  
       return result.IsAcknowledged;  
     }  
     public void Delete<T>(BsonValue WhereValue)  
     {  
       Delete<T>(typeof(T).Name, "_id", WhereValue);  
     }  
     public void Delete<T>(string DeleteColumnName, BsonValue WhereValue)  
     {  
       Delete<T>(typeof(T).Name, DeleteColumnName, WhereValue);  
     }      
     public void Delete<T>(string TableName, string DeleteColumnName, BsonValue WhereValue)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       var filter = Builders<T>.Filter.Eq(DeleteColumnName, WhereValue);  
       collection.DeleteOne(filter);  
     }  
     public List<T> Select<T>()  
     {  
       return Select<T>(typeof(T).Name);  
     }  
     public List<T> Select<T>(string TableName)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       return collection.Find(new BsonDocument()).ToList();  
     }  
     public List<T> Select<T>(BsonValue WhereValue, string SelectColumnName = null)  
     {  
       Connect();  
       if (string.IsNullOrEmpty(SelectColumnName))  
         SelectColumnName = "_id";  
       return Select<T>(typeof(T).Name, SelectColumnName, WhereValue);  
     }  
     public List<T> Select<T>(string TableName, string SelectColumnName, BsonValue WhereValue)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       var filter = Builders<T>.Filter.Eq(SelectColumnName, WhereValue);  
       return collection.Find(filter).ToList();  
     }      
     public T Select<T>(Dictionary<string, BsonValue> WhereValue)  
     {  
       return Select<T>(typeof(T).Name, WhereValue);  
     }  
     public T Select<T>(string TableName, Dictionary<string, BsonValue> WhereValue)  
     {  
       Connect();  
       var collection = mongoDatabase.GetCollection<T>(TableName);  
       FilterDefinition<T>[] filterDefinition = new FilterDefinition<T>[WhereValue.Count];  
       FilterDefinition<T> filter;  
       int i = 0;  
       foreach (var v in WhereValue)  
       {  
         filter = Builders<T>.Filter.Eq(v.Key, v.Value);  
         filterDefinition[i] = filter;  
         i++;  
       }  
       return collection.Find(Builders<T>.Filter.And(filterDefinition)).FirstOrDefault();  
     }  
     public int GetNextNumber<T>()  
     {  
       Connect();  
       var TableName = typeof(T).Name;  
       var value = this.Select<AutoIncrement>().Where(x => x.Table.Equals(TableName)).ToList().FirstOrDefault();  
       if (value == null)  
         return 1;  
       else  
         return value.TableId + 1;  
     }  
     public void SetNextNumber<T>(T Table, int id)  
     {  
       Connect();  
       var TableName = typeof(T).Name;  
       AutoIncrement autoIncrement = new AutoIncrement() { TableId = id, Table = TableName };  
       if (id > 1)  
       {   
         var filter = Builders<AutoIncrement>.Filter.Eq("Table", TableName);  
         var update = Builders<AutoIncrement>.Update.Set("TableId", id);  
         var collection = mongoDatabase.GetCollection<AutoIncrement>("AutoIncrement");  
         var result = collection.UpdateOne(filter, update);  
       }  
       else  
         this.Insert<AutoIncrement>(autoIncrement);        
     }  
   }  


You can copy this class and use it directly in your application. Anyway, it's got few more functions as you can have a parent and child database connections with primary keys as a value added function.

In our next post, we will talk a bit more about individual functions.
till that play with this code.

happy coding.