Category: .NET
-
Async / await transformation and pitfalls
Let’s say you want to transform this code to async / await The first version is Why is not good ? Because it executes in serial the file,and then the console code The good version is You can see in action at https://youtu.be/02oO0YaTEyM
-
Video Tutorials 5 minutes
Videos: 5Min Logging 5min Send emails and SMTP4Dev 5Min Memory Profiler ( User Object and/or memory leaks) 5min SFHB 5min – .TT files in Visual Studio Playlist 5 Minutes .NET
-
MVC planning poker–part 7
The latest 2 cases are Use Case 5: Round reset Moderator enters a round name (?) . Participants choose a value. Host press "reset round " and a fresh new round is created The old one is not saved Use Case 6: Round save After a round is saved,the users can see the history round…
-
2015 – Todo
Learn vNext Make a tutorial in EN + RO about vNext That will be all 😉
-
Entity Framework 6 Record and play use : Unit Testing ( part 2 of 5)
Part 1 : What is EF record and play : http://msprogrammer.serviciipeweb.ro/2014/11/29/entity-framework-6-record-and-play-1-of-5/ Part 2: EF Record and play use: Testing : http://msprogrammer.serviciipeweb.ro/2014/12/08/entity-framework-6-record-and-play-use-unit-testing-part-2-of-5/ Part 3: EF Record and play use: Make demo: http://msprogrammer.serviciipeweb.ro/2014/12/14/entity-framework-6-record-and-play-use-making-demos-part-3-of-5/ Part 4: EF Record and play use: Record user Sql when a bug occurs: http://msprogrammer.serviciipeweb.ro/2014/12/26/ef-record-and-play-use-recording-user-sql-when-a-bug-occurred-part-4-of-5/ Part 5: EF record and play: conclusions: http://msprogrammer.serviciipeweb.ro/2015/01/05/ef-record-and-play-conclusions/…
-
Entity Framework 6 Record and play – 1 of 5
Part 1 : What is EF record and play : http://msprogrammer.serviciipeweb.ro/2014/11/29/entity-framework-6-record-and-play-1-of-5/ Part 2: EF Record and play use: Testing : http://msprogrammer.serviciipeweb.ro/2014/12/08/entity-framework-6-record-and-play-use-unit-testing-part-2-of-5/ Part 3: EF Record and play use: Make demo: http://msprogrammer.serviciipeweb.ro/2014/12/14/entity-framework-6-record-and-play-use-making-demos-part-3-of-5/ Part 4: EF Record and play use: Record user Sql when a bug occurs: http://msprogrammer.serviciipeweb.ro/2014/12/26/ef-record-and-play-use-recording-user-sql-when-a-bug-occurred-part-4-of-5/ Part 5: EF record and play: conclusions: http://msprogrammer.serviciipeweb.ro/2015/01/05/ef-record-and-play-conclusions/…
-
Traceability – conclusion – part 7 of 7
Those were previous posts: Traceability in .NET – 1 of 7 Traceability in .NET–1.0.*–part 2 of 7 Tracebility in .NET -source control – part 3 of 7 Traceability in .NET–.tt files–add build date– part 4 of 7 Traceability in .NET–.tt files–add changeset – part 5 of 7 .TT – add more informations(.NET version,build ) –…
-
.TT – add more informations(.NET version,build ) – part 6 of 7
As you can see from the previous chapter,we have added to the AssemblyDescription more informations – like .NET version,build configuration,and more You can see those with an explorer add-on http://www.codeproject.com/Articles/118909/Windows-7-File-properties-Version-Tab-Shell-Extens Video : http://youtu.be/A_qSdVV93qk Demo project here : https://traceabilitydemo.codeplex.com/releases/view/132231 Source code here : https://traceabilitydemo.codeplex.com/SourceControl/changeset/view/110446
-
Traceability in .NET–.tt files–add changeset – part 5 of 7
We wish to add,from the .tt file,the id of the last TFS checkin. For this purpose we will connect to TFS and we will investigate in the current project the latest change. We will use the facility of .tt file to connect to the host and ask for various features ( such as TFS )…
-
Traceability in .NET–.tt files–add build date– part 4 of 7
Firstly we propose that build can automatically put the data in AssemblyVersion. For this you will need somehow to generate the current date. We can do this in several ways – for example,a post build event. We will use a .tt file that will automatically generate this date. We will use for other things –…