Recently i read a post talks about LINQO. With this instrument the use of LinqtoSQL became less heavy.
Infact with this is possible to create a complete project using existing template.
A great important things is the dbml synchronization with the database tables, i think that is a great plus because recently i worked in a WCF project where the dbml must be continuously refreshed…really bad!
Now i would to try PLINQO at 360° …
Just now i saw that Microsoft made available to developers two packages containing more training pathways, and code examples in VB.NET and C#.
With this quickguide, Microsoft gives an instrument for .NET Developers and no to learn Windows Workflow Fundation(WF) . I’ m very interested to learn this programming model, infact WF provides a unified programming model for computing representation of real business processes.
This affects me so much that i decid to see what it is specifically does….below some link for help who want to learn too.
Microsoft manuals and sample code
David Chappell “The WorkFlowWay”

On July 7th in Milan, many developers will find them in a fulltime day dedicated to Windows Mobile. This workshop organized by Microsoft, will give an overview to the new Windows Mobile 6.5,
Internet Explorer Mobile 6, ecc. This meeting is free, then don’t miss!
I can’t partecipate because is a working day, then i wait for your impressions.
link
ComponentArt starts a summer competition for Silverlight. This competition during from 22 June to 22 September 2009, any developer can partecipate and the winner can take away $10,000!!! Component Art offer in plus a free trial license key for his pruduct for help who wants to use, but the use of this components is not required.
Good Luck to all.
Che LinQ fosse una notevole innovazione, tutti ne saranno d’accordo. Ma non tutti sanno di cosa stiamo parlando, quindi ne diamo la definizione ufficiale :
LinQ è l’acronimo di Language Integrated Query ovvero Linguaggio di interrogazione integrato.
Tale linguaggio è integrato nel .NET Framework e consente di fare interrogazioni su qualsiasi collezione di oggetti,DataBase e XML. Lasciando da parte LinQ to SQL, che sto tuttora usando, quello che mi ha dato lo spunto per scrivere questo post è stato un caso reale incontrato oggi in ufficio.
Ho una classe Assegno così strutturata con degli attributi tipo : ID, Numero, Data, Importo.
Ora supponiamo di avere una lista generica di Assegni:
1
| List<Assegno>assegni= new List<Assegno>(); |
Il mio problema era quello di dover fare la somma di tutti gli importi degli Assegni, nessun problema infatti:
1
2
3
| int somma=0;
foreach (Assegno a in assegni)
somma+=a.Importo; |
Molto semplice ma macchinoso, analizziamo ora la versione LinQ:
1
| int somma = (from a in assegni select a.Importo).Sum(); |
Troppo potente! Lo sò l’esempio è banale ma vi assicuro che LinQ può fare molto di più,
magari vedremo altro nei prossimi post.
A presto.