{{theTime}}

Search This Blog

Total Pageviews

Construct String from Set using any delimiter


public static String getSetAsString(Set ids, String delimiter){
   StringBuffer idsSql = new StringBuffer() ;
   Iterator it = ids.iterator();    
   while(it.hasNext()) {
        idsSql .append((Long)it.next()) ;
        idsSql .append(delimiter) ;
   }    
   return idsSql .toString().substring(0, idsSql .length()-1) ;

No comments:

Generate Models from SQL Server using Entity Framework Core

To generate models from SQL Server database tables using Entity Framework (EF) in .NET, you can follow the Database-First approach with Ent...