In this post I’ve copied & pasted ALL my Firefox bookmarks related to .Net software development.
It’s just experiment, how it would be displayed.
Update : it’s working quite good 🙂 .
You can try to use your browser search to find stuff by their names.
-
.Net
-
Online Tools
- Json Parser Online
- Analyze your JSON string as you type with an online Javascript parser, featuring tree view and syntax highlighting. Processing is done locally: no data send to server.
- Free Ticket system Dashboard : OrdoRerum
-
Cheat Sheets
- Creating JSON – Newton.JSon
- As well as parsing JSON from existing JSON strings, LINQ to JSON objects can be created from scratch to create new JSON structures.
-
MVC
-
Boilerplate
- Introduction to ASP.NET Boilerplate – CodeProject
- ASP.NET Boilerplate is a starting point for new modern web applications using best practices and most popular tools.; Author: Halil ibrahim Kalkan; Updated: 19 Jul 2016; Section: ASP.NET; Chapter: Web Development; Updated: 19 Jul 2016
- Articles | halil ibrahim kalkan
- Introduction to ASP.NET Boilerplate – CodeProject
- ASP.NET Boilerplate is a starting point for new modern web applications using best practices and most popular tools.; Author: Halil ibrahim Kalkan; Updated: 19 Jul 2016; Section: ASP.NET; Chapter: Web Development; Updated: 19 Jul 2016
- Using AngularJs, ASP.NET MVC, Web API and EntityFramework to build NLayered Single Page Web Applications – CodeProject
- Building an NLayered, localized, well-structured Single-Page Web Application using AngularJs, ASP.NET MVC, Web API, EntityFramework and ASP.NET Boilerplate.; Author: Halil ibrahim Kalkan; Updated: 26 Oct 2016; Section: ASP.NET; Chapter: Web Development; Updated: 26 Oct 2016
- Using ASP.NET Core, Entity Framework Core and ASP.NET Boilerplate to Create NLayered Web Application (Part I) – CodeProject
- A step by step guide to create a web application based on ASP.NET Core, Entity Framework Core and ASP.NET Boilerplate frameworks with automated tests.; Author: Halil ibrahim Kalkan; Updated: 9 Aug 2016; Section: ASP.NET; Chapter: Web Development; Updated: 9 Aug 2016
- Using ASP.NET Core, Entity Framework Core and ASP.NET Boilerplate to Create NLayered Web Application (Part II) – CodeProject
- A step by step guide to create a layered web application based on ASP.NET Core, Entity Framework Core and ASP.NET Boilerplate frameworks with automated tests.; Author: Halil ibrahim Kalkan; Updated: 9 Aug 2016; Section: ASP.NET; Chapter: Web Development; Updated: 9 Aug 2016
-
Identity
- ASP.NET MVC and Identity 2.0: Understanding the Basics | John Atten
- Change Primary Key for Users in ASP.NET Identity | Microsoft Docs
- In Visual Studio 2013, the default web application uses a string value for the key for user accounts. ASP.NET Identity enables you to change the type of the…
- Change User Id type to int in ASP.NET Identity in VS2015 – Stack Overflow
- asp.net mvc – How to change type of id in Microsoft.AspNet.Identity.EntityFramework.IdentityUser – Stack Overflow
- asp.net mvc – where to configure applicationUserManager and role manager in aspnet Identity – Stack Overflow
- AspNet Identity and IoC Container Registration « Trailmax Tech
- Simple user authentication: ASP.NET Identity and NHibernate – Oliver Wyman Labs: Technical
- News, views and produce from Oliver Wyman engineers.
- NHibernate.AspNet.Identity.Example/NHibernate.AspNet.Identity.Example at master · MartinEden/NHibernate.AspNet.Identity.Example · GitHub
- NHibernate.AspNet.Identity.Example – A short and sweet example of how to do NHibernate backed identity-provision with ASP.NET MVC 5
- Implementing a Custom MySQL ASP.NET Identity Storage Provider | Microsoft Docs
- ASP.NET Identity is an extensible system which enables you to create your own storage provider and plug it into your application without re-working the appli…
- Overview of Custom Storage Providers for ASP.NET Identity | Microsoft Docs
- ASP.NET Identity is an extensible system which enables you to create your own storage provider and plug it into your application without re-working the appli…
- Introducing System.Web.Providers – ASP.NET Universal Providers for Session, Membership, Roles and User Profile on SQL Compact and SQL Azure – Scott Hanselman
- Scott Hanselman on Programming, The Web, Open Source, .NET, The Cloud and More
- Introduction to ASP.NET Identity | Microsoft Docs
- The ASP.NET membership system was introduced with ASP.NET 2.0 back in 2005, and since then there have been many changes in the ways web applications typicall…
- Using Google Authenticator with ASP.NET Identity – Jerrie Pelser
- Extends the 2 factor autentication in ASP.NET Identity 2 to also add support for the Google Authenticator application.
- Code! MVC 5 App with Facebook, Twitter, LinkedIn and Google OAuth2 Sign-on (C#) | Microsoft Docs
- This tutorial shows you how to build an ASP.NET MVC 5 web application that enables users to log in using OAuth 2.0 with credentials from an external authenti…
- ASP.NET MVC 5: Building Your First Web Application – Part 1 – CodeProject
- This article is part 1 of the series for building a simple web application in ASP.NET MVC 5.; Author: Vincent Maverick Durano; Updated: 2 Dec 2016; Section: ASP.NET; Chapter: Web Development; Updated: 2 Dec 2016
- GitHub – dwdkls/pizzamvc: Fast and simple CRUD framework based on ASP.NET MVC
- pizzamvc – Fast and simple CRUD framework based on ASP.NET MVC
- ASP.NET Boilerplate – Web Application Framework | Home Page
- An application framework and starting point for ASP.NET MVC web applications with best practices and most popular tools!
- asp.net mvc – Storing data in HttpContext.Current.Items vs ViewData – Stack Overflow
- When we can use HttpContext.Current.Items to stores data in ASP.NET? – Abhijit’s Blog
- To answer this question In a single statement, you can use HttpContext.Current.Items for very short term storage. By Short term storage means, this data is valid for a single HTTP Request. There are many confusion around regarding storing data in HttpContext.Current.Items and storing data in Session variable. In this blog post I am going to…
- lifecycle-of-an-aspnet-mvc-5-application1.pdf
-
WebApi
- Editable Routes – You’ve Been Haacked
- UPDATE: 2011/02/13: This code is now included in the RouteMagic NuGet package! To use this code, simply run Install-Package RouteMagic within the NuGet Package Manager Console.
- Inject Controller Libraries Dynamically at Runtime in ASP.NET Web API using Custom Assembly Resolvers | DotNetCurry
- An introduction to Web API’s Custom Assembly Resolver feature that enables you to add Controller libraries dynamically at run time. To add some pizazz, we generate the entire Controller on the fly and see how we can access it from a Web API Client.
- Customizing controller discovery in ASP.NET Web API | StrathWeb. A free flowing web tech monologue.
- ASP.NET Boilerplate – Web Application Framework | Dynamic Web API Layer
- An application framework and starting point for ASP.NET MVC web applications with best practices and most popular tools!
- Dynamic per-controller HttpConfiguration in ASP.NET Web API | StrathWeb. A free flowing web tech monologue.
- Per-controller configuration in WebAPI – Mike Stall’s .NET Debugging Blog
- Creating a Web API Controller with dynamic type – dotnetthoughts
- Most of the time while working with Web API; we were dealing with particular model from our domain and creating GET/POST/PUT/DELETE methods that map to CRUD operations. But today I faced an issue, where I need to store some data, and I don’t have a mapping class for the same. As WebAPI doesn’t support two classes in Post action using FromBody attribute, I did it by combining FromBody and FromUri attributes, like this.
- ASP.NET Web API Podstawy prostego API i co na to wujek WCF
- metroweb api jest to aplikacja, która może być manipulowana przy użyciu protokołu http. protokół http zawiera metody get,post,put,delete przy …
-
HttpHandlers
- Developing a REST Web Service using C# – A walkthrough – CodeProject
- This article concentrates on building the Web Service from scratch using HttpHandlers, and will give a detailed understanding of operations that happen “under the hood”.; Author: anshudutta; Updated: 24 Sep 2010; Section: Web Services; Chapter: Web Development; Updated: 24 Sep 2010
- 5 simple steps to create your first RESTful service – WCF Tutorial
- Simple step by step approach with example to creating a RESTful service using Windows Communication Foundation (WCF).
- How to create a RESTful web service using WCF (2 of 3)
- This is a comprehensive 3 part tutorial that discusses how to create a RESTful web service using WCF. This is the introductory post to get you set up.
- A Guide to Designing and Building RESTful Web Services with WCF 3.5
-
NHibernate
-
NH-vs-EF
- Dennis Doomen.NET: Entity Framework 5 and 6 vs NHibernate 3 – The State of Affairs
- Entity Framework 6 vs NHibernate 4
- Entity Framework 6 (7) vs NHibernate 4: DDD perspective – Enterprise Craftsmanship
- Entity Framework vs NHibernate. In this post, I’ll compare these two technologies from a Domain Driven Design perspective.
- Entity Framework 6 vs NHibernate 4 · Devbridge
- NHibernate is (was?) a #1 ORM Framework for ages. Features like code-based mappings or automatic migrations have found a place in Entity Framework.
- Dlaczego Entity Framework nie jest dobrym wyborem – Commit… and run!
- Smutny blog o programistycznej rzeczywistości
-
AspNet.Identity
- ASP.NET Identity Fluent NHibernate – Home
- NHibernate.AspNet.Identity.Example/IdentityStore.cs at master · MartinEden/NHibernate.AspNet.Identity.Example · GitHub
- NHibernate.AspNet.Identity.Example – A short and sweet example of how to do NHibernate backed identity-provision with ASP.NET MVC 5
- GitHub – JudahGabriel/RavenDB.AspNet.Identity: ASP.NET Identity provider that uses RavenDB for storage.
- RavenDB.AspNet.Identity – ASP.NET Identity provider that uses RavenDB for storage.
- Nhibernate.aspnet.identity by milesibastos
- GitHub – nhibernate/NHibernate.AspNet.Identity: ASP.NET Identity Provider for NHibernate
- NHibernate.AspNet.Identity – ASP.NET Identity Provider for NHibernate
- asp.net mvc – Using NHibernate.AspNet.Identity – Stack Overflow
- Prosty soft delete z wykorzystaniem NHibernate – Commit… and run!
- Smutny blog o programistycznej rzeczywistości
- c# – Fluently.Configure an NHibernate database from a config file? – Stack Overflow
- Getting started · jagregory/fluent-nhibernate Wiki · GitHub
- fluent-nhibernate – Fluent NHibernate!
- Fluent configuration · jagregory/fluent-nhibernate Wiki · GitHub
- fluent-nhibernate – Fluent NHibernate!
- Database configuration · jagregory/fluent-nhibernate Wiki · GitHub
- fluent-nhibernate – Fluent NHibernate!
- Your very first NHibernate application – Part 1
- In this series of articles Gabriel Schenker want to show and discuss which pieces are needed to successfully write an application based on NHibernate and Fluent NHibernate.
- NOtherDev: NHibernate’s mapping-by-code – the summary
- Yet another .NET developer blog, by Adam Bar. Main topics are NHibernate with LINQ and mapping-by-code mapping, API design, ASP.NET MVC, TDD…
- Docs & examples for NHibernate 3.2 mapping by code – Stack Overflow
- NHibernate Map by Code Examples – Part 1 – Brosteins
- NHIbernate Map by Code examples for Many to Many and Inverse Bag
- NHibernate Session handling in ASP.NET – the easy way | Wiggly Line of Thought
- EDIT: Take a look at a new blog post of mine on this subject. When I first started using the popular ORM framework NHibernate, I was a bit confused about the best way to manage NHibernate sessions in a web application. The official documentation did not provide much guidance, but I did find out that…
- Do you need a framework? – Ayende @ Rahien
- NHibernate and Isolation Levels | one architect’s blog
- I wanted to fire a query in existing NHibernate session under new transaction with read uncommitted isolation level. This means my query would not wait for any in flight UPDATE commands on my table. I had a following code in my C# class: ISession session = GetSession(); using (var tran = session.BeginTransaction(System.Data.IsolationLevel.ReadUncommitted)) { …
- Part 9: NHibernate transactions – NHibernate
- The official NHibernate community site. Download NHibernate. Read blogs. Contribute to the NHibernate Wiki. Find reference documentation.
- NHibernate: No implicit transactions « Melle Koning Blog
- SET IMPLICIT_TRANSACTIONS (Transact-SQL)
- What does BEGIN TRAN, ROLLBACK TRAN, and COMMIT TRAN mean?
- NHibernate and the Unit of Work Pattern – NHibernate Forge
- How do you set autocommit in an SQL Server session? – Stack Overflow
- Disabling Auto commit mode in SQL Server Management Studio | Suneetha’s Blog
- Posts about Disabling Auto commit mode in SQL Server Management Studio written by SuneethaKB
- What is the cost of opening a session? – Ayende @ Rahien
- Effective NHibernate Session management for web apps – NHibernate
- The official NHibernate community site. Download NHibernate. Read blogs. Contribute to the NHibernate Wiki. Find reference documentation.
- Home – NHibernate
- The official NHibernate community site. Download NHibernate. Read blogs. Contribute to the NHibernate Wiki. Find reference documentation.
- Dynamic LINQ to NHibernate – NHibernate
- The official NHibernate community site. Download NHibernate. Read blogs. Contribute to the NHibernate Wiki. Find reference documentation.
- NHibernate session managment – Stack Overflow
- How do I set the default transaction isolation level in Fluent NHibernate? – Stack Overflow
- NHibernate Mapping – – Ayende @ Rahien
- NHibernate Map by Code Examples – Part 2 – Brosteins
- Learn how to use the NHIbernate Map by Code feature with the following nhibernate map by code examples: JoinedSubClassMapping, SubclassMapping, and UnionSubclassMapping.
- NHibernate 3.2 Mapping by Code – Basic Mapping | LYCOG
- NHibernate | LYCOG
- NHibernate 3.2 Mapping by Code: Component Mapping | LYCOG
- NHibernate 3.2 Mapping by Code – Enforce Referential Integrity | LYCOG
- Lazy Loaded One-To-One With NHibernate – NHibernate
- The official NHibernate community site. Download NHibernate. Read blogs. Contribute to the NHibernate Wiki. Find reference documentation.
- c# – NHibernate One-To-One Mapping – Stack Overflow
-
MicroServices
- What is Microservices Architecture?
- Microservice architecture, or simply microservices, is a distinctive method of developing scalable software systems. Learn more about Microservices
- Microservice Architecture pattern
- Microservice Architecture
- Microservices – Wikipedia
-
Blogs
- Robert Corvus
- Code, code and more code.
- Schauderhaft | Softwaredevelopment, Learning, Qualitymanagement and all things “schauderhaft”
- Hacker Noon
- how hackers start their afternoons.
-
FeedsSources
- Feed43 : Edit Feed
-
C#
- C# | Piotr Zieliński
-
Visual Studio
-
Tools – Ext – AddIns
- VSCommands for Visual Studio 2013 extension
- Visual Studio: Hot (11249 ideas) – Visual Studio
- How do I rename a Project Folder from within Visual Studio? – Stack Overflow
- visual studio 2008 – Renaming the containing project folder in VS.net under TFS – Stack Overflow
- Controlling where Visual Studio puts files | Some Things Are Obvious
- Paul Sheriff’s Blog for the Real World – Clean up after Visual Studio
- As programmer’s we know that if we create a temporary file during the running of our application we need to make sure it is removed when the application or process is complete. We do this, but why …
-
Configs
- ASP.NET Web Deployment using Visual Studio: Web.config File Transformations | The ASP.NET Site
- This tutorial series shows you how to deploy (publish) an ASP.NET web application to Azure App Service Web Apps or to a third-party hosting provider, by using Visual Studio 2012 or Visual Studio 20…
- ASP.NET: Transform Web.config with Debug/Release on Build – Seb Nilsson
-
Free Edition
- Pliki do pobrania | Visual Studio
- Pobierz bezpłatne 90-dniowe wersje próbne produktów Visual Studio, bezpłatne produkty Visual Studio Express i dodatkowe oprogramowanie Visual Studio.
- Download Microsoft Visual Studio Community 2015 from Official Microsoft Download Center
- Microsoft Visual Studio Community 2015 is a new full-featured edition that enables you to unleash the power of Visual Studio to develop cross-platform solutions.
- Bezpłatne narzędzia programistyczne — Visual Studio Community 2015
- Visual Studio Community 2015 to program, który zawiera wszystkie przydatne funkcje programu Visual Studio Professional 2015 i został zaprojektowany or
- Visual Studio Dev Essentials
- Join the Visual Studio Dev Essentials program with everything you need to create apps – for free.
- Visual Studio Express
- Program Visual Studio Express oferuje bezpłatne narzędzia do tworzenia aplikacji uniwersalnych dla platformy systemu Windows, witryn sieci Web i aplik
- Visual Studio 2013 keyboard shortcuts – complete list
- A complete list of all keyboard shortcuts in Visual Studio 2015
-
IIS-Express
- IIS Express GUI – Home
- How to Run IIS Express from the Command Line?
- If you want to run the site using IIS Express command line, you should install Windows 7 or newer release and IIS Express first. Then follow …
- Programmatically start IIS Express from code. · GitHub
- ScottGu’s Blog – Introducing IIS Express
- Developers today build and test ASP.NET sites and applications using one of two web-servers: The ASP.NET Development Server that comes built-into Visual Studio The IIS Web Server …
- c# – Starting and stopping IIS Express programmatically – Stack Overflow
-
Agile
- Evolutionary Database Design
- Critical Skills for Software Developer too few People talk about | Schauderhaft
-
Scrum
- Scrum Training Series: Free Scrum Master Training
- There is no Scrum methodology, no Agile methodology. Online tutorials teach the Scrum framework, Agile principles, and Lean principles to help you create a learning organization and get Scrum Master certification.
- Effort vs. Time :: ScrumDesk – scrum project management tool
- ScrumDesk – scrum project management online tool
- agile – How do I manage specs in Scrum? – Stack Overflow
- Cucumber
- Cucumber. Simple, Human Collaboration
- project management – Can Scrum use technical specifications in the Product Backlog rather than user stories? – Programmers Stack Exchange
- testing – agile / scrum and functional specs – Programmers Stack Exchange
- Scrum Product Owner: The Agile Product Owner’s Role
- The Scrum product owner role is a project’s key stakeholder. Agile product owner responsibilities include prioritizing the product backlog and more.
- Agile Requirements Definition and Management – Scrum Alliance
- Agile is quickly becoming the most popular way of developing software. The key is to figure out what works for your organization, and then start experimenting.
- Home | Scrum Guides
- Scrum is a framework for developing and sustaining complex products. The Scrum Guide contains the official definition of Scrum as authored by Ken Schwaber and Jeff Sutherland.
- agile – Can a Product Owner be a developer in Scrum? – Project Management Stack Exchange
- Being an Effective Product Owner – Scrum Alliance
- When I met Paul, a first-time product owner on a new project, the first thing he asked was, “What do I really have to do and how much time will it require?”
- Lead Developer / Product Owner – Scrum.org | The home of Scrum – Forums | Scrum.org – The home of Scrum – Discussion Forums – Scrum
- What are the potential threats of having your lead developer also being the Product Owner? I was talking with a mate and he told me that within their company their most senior developer also act as Product Owner. As the Scrum guide doesn’t really talk …
- What’s wrong with being a developer and product owner in the same project? – Quora
- Dług technologiczny – najczęstszy powód wykolejania się projektów | webMASTAH
- Jakiś czas temu współtworzyłem produkt, który cieszył się dość dużym powodzeniem — był to panel do zarządzania hostingiem. Przez kilka lat nasza baza klientów
-
Certyfikacje
-
70-532
- DUMPS For Exam 70-532: Developing Microsoft Azure Solutions – YouTube
- http://www.examcollection.com/70-532.html
- Developing Microsoft Azure Solutions (70-532) Practice Test
- Documentation | Azure
- Get the tools, documentation, and sample code you need to build and manage powerful applications using Microsoft Azure. Documentation, tutorials and more.
- http://www.braindump2go.com/downloadable/download/sample/sample_id/4859/
- 70-532 Braindumps – Pass Microsoft 70-532 Exam with Microsoft Azure Developer Specialist Latest Dumps – 70-532 Brain Dumps
- Latest 70-532 dumps for Microsoft Azure Developer Specialist 70-532 exam training. Download braindumps for 70-532 and Pass Exam. Guaranteed Microsoft Azure Developer Specialist certification proven by Microsoft certified IT engineers.
- 70-532 Exam Dumps with PDF and VCE Download
- 1 USD – 70-532,70-532 Exam,70-532 Questions,MCTS 70-532,Microsoft 70-532,Free Try 70-532, Latest 70-532 Prep Under $1 USD Guaranteed Success or Money Back – ITExamWorld.net
- 70-532 , 70-532 exam, 70-532 Questions, 70-532 Exam,70-532 Study Guide,70-532 Test,70-532 demo,70-532 download,70-532 Braindump,70-532 Certification,Microsoft,MCTS,MCTS 70-532,Microsoft 70-532, Free Try 70-532, Latest 70-532 Prep Under $1 USD, Guaranteed Success or Money Back
- Exam Prep Session for Exam 70-532: Developing Microsoft Azure Solutions | Microsoft Ignite 2015 | Channel 9
- BRK3907 This Exam Prep session is designed for people experienced with programming using Azure who are interested in taking the 70-532 (Developing Microsoft Azure Solutions) exam. You can expect to review the
- How I passed the 70-532 Developing Microsoft Azure Solutions certification exam
- New Released Microsoft 70-532 Dumps PDF Free Download From Braindump2go (1-10) | Braindump2go Free Hot IT Exam Dumps Collection!
-
Azure Sol Architect
- MCSD: Azure Solutions Architect Certification | Microsoft Learning
- Become a Microsoft Azure Specialist. With Azure certification, you’ll gain professional recognition for your expertise in the full range of Azure solutions.
- Exam 70-532: Developing Microsoft Azure Solutions
- Register for exam 70-532 and view official preparation materials
- Learning Azure Local Storage with me. « Vadim’s Weblog
- Azure has many different storages. If you start Azure fabric and look at Development Storage UI you can see Blob, Queue, and Table Storage. In addition to that Windows Azure also has SQL Azure. There’s also Local Storage and that is what I want to talk about. Local Storage is a temporary file system storage…
- Egzamin 70-532: Developing Microsoft Azure Solutions
- Zarejestruj się na egzamin 70-532 i zapoznaj się z oficjalnymi materiałami przygotowującymi.
- Exam Prep Session for Exam 70-532: Developing Microsoft Azure Solutions | Microsoft Ignite 2015 | Channel 9
- BRK3907 This Exam Prep session is designed for people experienced with programming using Azure who are interested in taking the 70-532 (Developing Microsoft Azure Solutions) exam. You can expect to review the
- Developing Microsoft Azure Solutions – Microsoft Virtual Academy
- Free, on-demand MVA course: Devs, prepare for Exam 70-532: Developing Microsoft Azure Solutions & build robust cloud apps.
- Microsoft Azure Fundamentals – Microsoft Virtual Academy
- Free, on-demand MVA course for IT Pros (Part 1 of 4): Learn more about Microsoft Azure with the entertaining Bob Tabor.
- Microsoft Azure Fundamentals: Websites – Microsoft Virtual Academy
- Free, on-demand MVA course: Join the popular Bob Tabor as he takes you on a tour of Microsoft Azure Websites, in this Azure series.
- Exam 70-532 Prep Session: Developing Microsoft Azure Solutions | Build Azure
- Original Source: http://channel9.msdn.com/events/Ignite/2015/BRK3907
-
VM-sizes
- Overview of Virtual Machine Offerings in Microsoft Azure
- This article describes the major compute options offered in Microsoft Azure, as well as the categories and characteristics of Virtual Machine (VM) offerings based on the Infrastructure as a Service …
- Understanding the Table Service Data Model
- Microsoft Virtual Academy – bezpłatne techniczne kursy online z technologii Microsoft
- Microsoft Virtual Academy oferuje bezpłatne szkolenia on-line, które pomagają programistom, specjalistom IT i studentom być na bieżąco z najnowszymi technologiami, zdobywać wiedzę i rozwijać umiejętności.
- Azure Friday
- Microsoft Azure | Channel 9
- Microsoft Azure enables you to quickly build, deploy and manage applications across a global network of Microsoft-managed datacenters. You can build applications using any operating system, language o
- CLoud Service Sizes for cloud services
- Lists the different sizes for Azure cloud service web and worker roles.
- SQL Database performance & options: Service tiers | Microsoft Azure
- Compare SQL Database performance and business continuity features of the service tiers to balance cost and capability as you scale.
- New Azure SQL Database service tiers generally available in September with reduced pricing and enhanced SLA | Microsoft Azure Blog
- Following on the heels of last week’s announcement, I am pleased to announce more news about our efforts to deliver a rich, connected set of data services on Azure, as part of our broader data platform.
- Developing Microsoft Azure Solutions – Microsoft Virtual Academy
- Free, on-demand MVA course: Devs, prepare for Exam 70-532: Developing Microsoft Azure Solutions & build robust cloud apps.
-
Continous-Integration-Build
- Cake – Home : Build Util
- Database Integration Tests in Visual Studio Team Services and Cake Build « Trailmax Tech
-
TFS
- UnbindAndZip extension
- How can I always block checkin of a specific file in TFS – Stack Overflow
-
Branches-Shelves
- shelving – Branching vs. Shelves in TFS – Stack Overflow
- Permission reference for Team Foundation Server
- Set build triggers on TFS
- Specify CI, scheduled, gated, and other triggers for your build on Visual Studio Team Services and Team Foundation Server (TFS)
- Continuous integration on any platform
- Build Windows, Android, xCode and many other kinds of apps on Visual Studio Team Services and Team Foundation Server (TFS)
-
ReleaseManagement
- Hotfix or Not? Managing a Successful Release Process | Viget
- It’s obvious that good communication is critical to the success of any project. On a recent large project, the many layers of communication needed to coordina…
- versioning – What version numbering scheme do you recommend? – Stack Overflow
- Managing versions – Atlassian Documentation
- Software versioning – Wikipedia
- Top “Must Know” Frameworks for .NET web developers | Ugo Lattanzi’s tech world
- A list of the best framework for a web .net developer, included front end frameworks.
-
Database
-
T-Sql
- sql server – T-SQL – SET versus SELECT when assigning variables? – Stack Overflow
-
Cursor
- Comparing cursor vs. WHILE loop performance in SQL Server 2008 – TechRepublic
- Performance Tuning SQL Server Cursors – SQL Server Performance
- Why do people hate SQL cursors so much? – Stack Overflow
- DECLARE CURSOR (Transact-SQL)
- DECLARE CURSOR (język Transact-SQL)
- sql server – How to make a T-SQL Cursor faster? – Stack Overflow
- Understanding SQL Server Fast_Forward Server Cursors – Tips, Tricks, and Advice from the SQL Server Query Processing Team – Site Home – MSDN Blogs
- Increase your SQL Server performance by replacing cursors with set operations – SQL Programmability & API Development Team Blog – Site Home – MSDN Blogs
- Passing Table to a Function Parameter in SQL Server 2012
- Passing table valued parameters in SQL Server 2008 – TechRepublic
-
Collation
- tsql – Cast collation of nvarchar variables in t-sql – Stack Overflow
- SQL Joins
- T-SQL Join Types | T-SQL content from SQL Server Pro
-
Performance
- Optimizing Performance / Indexes on Temp Tables – SQLTeam.com
- How to Set Up a SQL Server Stress Test Environment in 8 Steps: Lessons From the Field – SQL Server Performance
- Server Performance and Activity Monitoring
- SQL Server Benchmark tools and stress testing tools – Sriram’s 2 Cents – Site Home – MSDN Blogs
- Create SQL Server server performance benchmark query – Stack Overflow
- SQL Server Query Plan Analysis: The 5 Culprits That Cause 95% of Your Performance Headaches | TechEd North America 2014 | Channel 9
- Training Course on Features of T-SQL – Microsoft Virtual Academy
-
Cert 70-461 Quering
- Passed 70-461 Exam : Querying Microsoft SQL Server 2012 | SQL with Manoj
- Egzamin 70-461: Querying Microsoft SQL Server 2012
- Querying Microsoft SQL Server 2012 Databases Jump Start
- Exam 70-461: Querying Microsoft SQL Server 2012
- Passed 70-461 Exam : Querying Microsoft SQL Server 2012 – 461: Querying Microsoft SQL Server 2012 – Database Certification Study Group – Born to Learn
- 70-461 Certification Exam Querying Microsoft SQL Server 2012
-
Triggers
-
Blogs
- Ranjith Kumar S –
-
Scripts
- cleanupschema – Dokumenty Google
-
Undocumented
- List of Undocumented Stored Procedures in SQL Server
- SQL Server Undocumented Stored Procedure – sp_MSForEachTable – TechNet Articles – United States (English) – TechNet Wiki
- Less Than Dot – Wiki – SQL Server Programming Hacks – 100+ List – Wiki
- Less Than Dot – Wiki – Sp MSForEachtable – Wiki
- Vadivel’s blog: Easiest / fastest way to Delete ALL records in a Database
- Instant SQL Formatter
- Free online sql formatting tool, beautify sql code instantly for SQL Server, Oracle, DB2, MySQL, Sybase, Access and MDX
-
Olap
- Create First OLAP Cube in SQL Server Analysis Services – CodeProject
- Create First Data WareHouse – CodeProject
- Jamie Thomson : SSDT – What’s in a name?
- Buisness Intelligence Development Studio for SQL Server 2012
- Julian Hyde on Streaming Data, Open Source OLAP. And stuff.: Auto-generated date dimension tables
- How to quickly add a date dimension to a Pentaho Mondrian OLAP cube
- Create and Populate Date Dimension for Data Warehouse – CodeProject
- Processing Options and Settings (Analysis Services)
- Incremental Updates in OLAP Cubes | SQL Server content from SQL Server Pro
- How to incrementally update a cube
- Working with named calculations
- Defining Named Calculations in a Data Source View (Analysis Services)
-
MS-SQL-Develompent
- Managing Database Change in Source Control – SQL Server Data Tools Team Blog – Site Home – MSDN Blogs
- Why your database version control strategy sucks and what to do about it, Part I « The Mooney Project
- EMS SQL Manager – Database software, SQL tools, VCL and .NET components for database design, database management and development tools for MySQL, PostgreSQL, Microsoft SQL Server, InterBase, Firebird, Oracle, DB2 and DBISAM
- Free SQL Server Tools | SQL Server 2012 content from SQL Server Pro
- The Mega Guide to Free SQL Server Tools | Database Performance Tuning content from SQL Server Pro
- SQL Server Tools – Top 10 Free SQL Server Tools for DBAs and Devs – John Sansom
- Free SQL Server tools that might make your life a little easier
- Free SQL Server tools from Microsoft
- MS SQL Tools – MSSQL Admin Tools – SQL Server Tools – MSDE Tools by SQL Maestro Group
- SQL Developer – Features
- SQL Developer – Screenshots
- techPortal | Database Version Control
- Walkthrough: Put an Existing Database Schema Under Version Control
- Is Your Database Under Version Control?
- Get Your Database Under Version Control
- Three Rules for Database Work
- Versioning Databases – The Baseline
- Versioning Databases – Change Scripts
- Versioning Databases – Views, Stored Procedures, and the Like
- Versioning Databases – Branching and Merging
- Do you use source control for your database items? – Stack Overflow
- SQL Source Control: link database to TFS, SVN, Vault, Git, Mercurial
- Freeware SQL Script Generator (Scripter) software for SQL Server databases
- SSMS Tools Pack Features
-
PowerShell
- SQL Server 2012: Generate Scripts from command line – Database Administrators Stack Exchange
- Automated Script-generation with Powershell and SMO
- SQL Server PowerShell Extensions – Home
- tsql – How can I script SQL Server database diagrams? – Stack Overflow
- Generating SQL Scripts using Windows PowerShell
-
SQLite
- How To Download & Install SQLite
- Installing and Using SQLite on Windows – CodeProject
- When one is developing in .NET with Visual Studio and other Microsoft tools, it is easy to lose sight of alternative solutions to common problems.; Author: John Atten; Updated: 9 Dec 2014; Section: Database; Chapter: Database; Updated: 9 Dec 2014
- SQLite – Installation
- SQLite Installation – Learn SQLite from basic to advanced covering database programming clauses command functions administration queries and usage along with PHP, PERL, C, C++ and JAVA in simple steps. This tutorial takes you starting from basic to advance SQLite concepts.
- SQLite Home Page
- ADO.NET Provider for SQLite with Entity Framework, LINQ to SQLite and NHibernate Support
- ADO.NET data provider for SQLite with support for Entity Framework, NHibernate, and LinqConnect (LINQ to PostgreSQL) ORMs, user-defined functions CEROD and SEE, etc.
- c# – Unable to find the requested .Net Framework Data Provider – SQLite – Stack Overflow
- GitHub – oysteinkrog/SQLite.Net-PCL: Simple, powerful, cross-platform SQLite client and ORM – Updated version with PCL support
- SQLite.Net-PCL – Simple, powerful, cross-platform SQLite client and ORM – Updated version with PCL support
-
NoSql
- Data Points – What the Heck Are Document Databases?
- RavenDB – Documentation – What is NoSQL?
- Why You Should Never Use MongoDB « Sarah Mei
- Switching Data Stores: A Postmodern Comedy // Speaker Deck
- How should i design Users and Friends table when using MongoDB (Rails) – Stack Overflow
- Data Model Examples and Patterns — MongoDB Manual 3.4
- MongoDB Hosting & Monitoring by mLab
- Azure DocumentDB vs. MongoDB – Medium
- DocumentDB is a NoSQL database-as-a-service this is part of the Microsoft Azure platform. As a document store, it falls into the same category as MongoDB, CouchDB or RethinkDB and just like those, it…
- MongoDB vs. Azure DocumentDB – Simple Talk
- If you are familiar with MongoDB you may be wondering how Azure’s DocumentDB service compares. In this article David Green gives us a look. Note that Azure DocumentDB is evolving very quickly, so some of the limitations mentioned in this article may have already been removed.
- NuGet Gallery | AspNet.Identity.MongoDB 2.0.8
- MongoDB and C# – CodeProject
- Using MongoDB from C#.; Author: Craig G. Wilson; Updated: 15 Jun 2010; Section: NoSQL; Chapter: Database; Updated: 15 Jun 2010
- All SQL Server SqlConnection Properties – ConnectionStrings.com
- Table showing explanations for each property available when creating an SQL Server connection.
-
Detailed-Subjects
-
Async-Await
- Async and Await
- Most people have already heard about the new “async” and “await” functionality coming in Visual Studio 11. This is Yet Another Introductory Post.
- C# Async, Await Examples
- This C# article uses the async and await keywords. It declares an async method and calls an async method with await.
- C# 5.0 Async explained as simple as possible 🙂
- Programming Efficiently with the SharePoint Client-Side Object Model – CodeProject
- How to make the most of the Client-Side Object Model in your SharePoint App; Author: Jonathan Cardy; Updated: 3 Mar 2014; Section: SharePoint Server; Chapter: Enterprise Systems; Updated: 3 Mar 2014
- c# – async/await vs. hand made continuations: is ExecuteSynchronously cleverly used? – Stack Overflow
- Real world async/await defects | Fabulous adventures in coding
- Today I’m once again asking for your help. The headliner feature for C# 5 was of course the await operator for asynchronous methods. The intention of the feature was to make it easier to write asynchronous programs where the program text is not a mass of inside-out code that emphasizes the mechanisms of asynchrony, but…
- Async/Await – Best Practices in Asynchronous Programming
- c# – async/await exception handling pattern – Stack Overflow
- C# 5 Async Exception Handling
- Ian Griffiths’ Weblog
-
Static
- language agnostic – Is using a lot of static methods a bad thing? – Stack Overflow
-
Threads
-
PowerShell
- Use PowerShell to Rename Files in Bulk – Hey, Scripting Guy! Blog – Site Home – TechNet Blogs
- Batch File Rename with Windows PowerShell
- How to Batch Rename Files in Windows: 4 Ways to Rename Multiple Files
- Windows PowerShell Scripting
- PowerShell.exe Command-Line Help
- Removing the first or last lines from a text file — The PowerShell Bear
- powershell – Remove lines from text file if it starts with – Stack Overflow
- text – Remove last line from file with Powershell – Stack Overflow
- Powershell – Function to Strip Blank Lines from Output | Energized About Technology
- How to Delete Lines From Text File in PowerShell | eHow
- Mad With PowerShell: Delete all blank lines from a text file using PowerShell
- Removing trailing blank lines in PowerShell
- remove empty lines from text file with PowerShell – Stack Overflow
- Delete last occurrence of a string in a file – PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources
- New Delhi PowerShell User Group.: Part-4: Text Manipulation in PowerShell using .Replace(), and .Remove() methods.
- Windows PowerShell If Statement. Also ‘Else and ‘ElseIf’ constructions
- Conditional Logic | PowerShell Pro! :: PowerShell Pro!
- Trim Your Strings with PowerShell – Hey, Scripting Guy! Blog – Site Home – TechNet Blogs
- how to use powershell to remove space from end of line in text file – Stack Overflow
- How to trim all the lines in a file in powershell – Stack Overflow
- Replace string in file with PowerShell – Erdem Ergin
- string replace file content with powershell – Stack Overflow
- Remove empty lines from a file using Powershell. (secretGeek.net)
-
NLog
- NLog: writing log entries to Azure Table Storage | Vidar’s musings
- Enable diagnostic logging – Azure Websites
- Using NLog with Windows Azure Cloud Services | thePatrickDavis.com
- Cloud Service Fundamentals – TechNet Articles – United States (English) – TechNet Wiki
- Windows Azure Storage Explorers (2014) – Microsoft Azure Storage Team Blog – Site Home – MSDN Blogs
- harouny/NLog.Extensions.AzureTableStorage · GitHub
- NuGet Gallery | NLog Azure Table Storage Target 1.0.8
- Custom Azure NLog Integration with Azure Diagnostics SDK using NuGet | elastacloud = azurecoder + bareweb
- Integrating NLog with Azure Cloud Service Diagnostics | A Technical Perspective
- Using web.config transforms with NLog configuration – | Gunnar Peipman – Programming Blog
- Centralized Logging and Diagnostics with Elmah and NLog – Ben Foster
- NLog Azure Table Storage Target – NuGet Must Haves
- .Net & Integration: Writing multiline log messages into single line in NLog
- NLog configuration for multiline messages. Grouping log records with multiline messages layout
-
Assemblies
- .net – write to bindingRedirect element in app.config file – Stack Overflow
- Przekierowywanie wersji zestawu
- c# – Why is a “bindingRedirect” added to the app.config file after adding the Microsoft.Bcl.Async package? – Stack Overflow
- Element
-
BackgrounWorker
- WPF BINDING CONVERTER BEST PRACTICES | Dev102.com
- Three Practices of WPF Binding Converter usage from worst to best.
- How to: Use a Background Worker
- BackgroundWorker Class Sample for Beginners – CodeProject
- Simple steps to a Multithreaded application; Author: Srivatsa Haridas; Updated: 4 Aug 2010; Section: .NET Framework; Chapter: Platforms, Frameworks & Libraries; Updated: 4 Aug 2010
- CLR exception handling from A to Z – Everything you didn’t want to know about try-catch-finally-fault-filter – B# .NET Blog
-
Code Contracts
- Code Contracts Part 1 – Introduction | Developer Journey LLC
-
Configuration
- Klasa ConfigurationManager (System.Configuration)
- c# – Reading settings from app.config or web.config in .net – Stack Overflow
- Świadkowie – Opętany przez szatana [odc. 1 z 3] – YouTube
-
AD-Identity
-
RootCA
- Deploy a private CA with Windows Server 2012 – TechRepublic
- Step by Step : Deploying a Standalone Root CA in Server 2012 R2 (Part 1) | Just a random “Microsoft Server / Client Tech” info..
- Enterprise or Standalone Root Certification Authority in Server 2012
-
Silverlight
-
Testing
- Missing Silverlight Unit Tests in VS2012 | Olaf’s Developer-Blog
- When you are missing the Silverlight unit test project templates in Visual Studio 2012 then you should check this link: http://social.msdn.microsoft.com/Forums/silverlight/en-US/180283df-6cac-45fd-bdce-ff3aec31cb7c/unable-to-create-a-silverlight-unit-test-project-on-vs2012 The problem is that the Silverlight Toolkit will install the template files to the first Visual Studio folder found – or even the default folder in case you installed your VS to a different location. So…
- VS 2012 Silverlight UnitTest
- Silverlight Unit Test Adapter extension
- Test adapter for Visual Studio 2012 to integrate Silverlight Unit Tests, based on the Silverlight Unit Test project type from the Silverlight Toolkit, available using the native Test Explorer in Visual Studio 2012
- AgUnit – Silverlight unit testing with ReSharper – Home
- Silverlight Toolkit – Home
- c# – How to rig up Microsoft.Silverlight.Testing? – Stack Overflow
- Unit Test Result Viewer for Silverlight extension
- Toolwindow to view the results of Silverlight unit tests from the Silverlight Toolkit, while using StatLight as execution engine.
- Silverlight Testing Automation Tool – Home
- Silverlight Testing Automation Tool – Documentation
- c# – Set custom MarkupExtension from code – Stack Overflow
- Working with DataGrid in Silverlight
- This article shows you how to work with a DataGrid control available in Silverlight 2.0. Article also demonstrates some formatting and data binding techniques.
- Silverlight Datagrid Row Click – Stack Overflow
- UI Guidelines for Async
- So far, a lot of attention has been paid on how to use async, but there is little guidance on when to push operations off the UI thread.
- c# – When correctly use Task.Run and when just async-await – Stack Overflow
- Guide to WPF DataGrid formatting using bindings – CodeProject
- Using Style and Binding to control WPF DataGridCell appearance.; Author: Peter Huber SG; Updated: 25 Nov 2013; Section: Windows Presentation Foundation; Chapter: Platforms, Frameworks & Libraries; Updated: 25 Nov 2013
- Network Security Access Restrictions in Silverlight
- Cross-domain on self-hosted Web Services
- Making a Service Available Across Domain Boundaries
-
HttpS-web-service
- Call HTTPS wcf service using programmatically created binding
-
Cryptography
- c# – Is this the way to salt and store a Password in Db? – Stack Overflow
-
IoC Containers
- StructureMap Home Page
- Building an IoC container in 15 lines of code – Ayende @ Rahien
- List of .NET Dependency Injection Containers (IOC) – Scott Hanselman
- Autofac: Home
- Top 20 NuGet packages for IoC – NuGet Must Haves
- Gunnar Peipman’s ASP.NET blog – Unity, Castle Windsor, StructureMap, Ninject – who has best performance?
- Extensive list of Inversion of Control Containers and Dependency Injection Pattern implementations for .NET | Saulius Šunauskas
- Comparing .NET DI (IoC) Frameworks, Part 1 » Blog Archive » Andrey Shchekin
- Comparing .NET DI (IoC) Frameworks, Part 2 » Blog Archive » Andrey Shchekin
- dependency injection – How do the major C# DI/IoC frameworks compare? – Stack Overflow
- dadhi / DryIoc / wiki / Home — Bitbucket
- IoC Container Benchmark – Performance comparison – www.palmmedia.de
- LightInject
- The One Correct Way to do Dependency Injection | Schauderhaft
- The One Correct Way to do Dependency Injection | Schauderhaft
- Setter injection sucks | Evan Bottcher
- Repeat After Me: Setter Injection is a Symptom of Design Problems | Schauderhaft
- Welcome to Simple Injector’s documentation! — Simple Injector 2 documentation
- LightInject
- IoC Container Benchmark – Performance comparison – www.palmmedia.de
- Blog and software projects of Daniel Palme
-
Regex
- Online regex tester and debugger: JavaScript, Python, PHP, and PCRE
- Online regex tester, debugger with highlighting for PHP, PCRE, Python and JavaScript.
- Regexp Tutorial – Shorthand Character Classes
- In a regular expression, shorthand character classes match a single character from a predefined set of characters.
- Regex Tutorial – Literal Characters and Special Characters
- .NET Regex Tester – Regex Storm
- Online .NET regular expression tester with real-time highlighting and detailed results output.
-
Covariance-Contravariance
- Covariance and Contravariance in C#, Part One – Fabulous Adventures In Coding
- Covariance and contravariance (computer science) – Wikipedia
- Covariance and Contravariance in C# – CodeProject
- Covariance and Contravariance in C#; Author: Sohel_Rana; Updated: 29 Mar 2010; Section: C#; Chapter: Languages; Updated: 29 Mar 2010
-
Design
- Design Patterns Interpreter Pattern
- .NET Design Patterns in C# and VB.NET – Gang of Four (GOF) – doFactory.com
- Design Patterns
- Design Patterns
- Design patterns. Design patterns source code examples. Design patterns tutorials and guides.
- Software design pattern – Wikipedia, the free encyclopedia
- Two Design Patterns That Will Make Your Applications Better
- Repository Design Pattern Demystified
- Amit Gupta simplifies and explains the Repository Design Pattern on a Laravel backed example
- The Repository Design Pattern – Tuts+ Code Tutorial
- The Repository Design Pattern, defined by Eric Evens in his Domain Driven Design book, is one of the most useful and most widely applicable design patterns ever invented. Any application has to work with persistence and with some kind of list of items. These can be users, products, networks, disks, or whatever your application is about. If you have a blog for example, you have to deal with lists of blog posts and lists of comments. The problem that all of these list management logics have in common is how to connect business logic, factories and persistence. | Difficulty: Beginner; Length: Short; Tags: PHP, Web Development
-
CQRS
- CQS versus server generated IDs
- CommandQuerySeparation
- CQS and server-generated Entity IDs
- Command Query Responsibility Segregation
- CQRS Antipatterns « Trailmax Tech
- RavenDB – the open source NoSQL database for .NET
- c2.com Wiki Front Page
- Extreme Programming Roadmap c2.com
- Domain-Driven Design in Practice | Pluralsight
- A descriptive, in-depth walk-through for applying Domain-Driven Design principles in practice.
-
Learning & Progress
- Fluentassertions
- Fluentassertions : Fluent Assertions is a set of .NET extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style test. We currently use it in all our internal and client projects, and it is used in many open-source projects. It runs on .NET 3.5, 4.0 and 4.5 (Desktop and Windows Store), Silverlight 4 and 5 and Windows Phone 7.5. And it supports the unit test frameworks NUnit, XUnit, MBUnit, Gallio and MSpec.
- Quick Start — Simple Injector 2 documentation
- JeremySkinner/FluentValidation · GitHub
- FluentValidation – A small validation library for .NET that uses a fluent interface and lambda expressions for building validation rules.
- MehdiK/Humanizer · GitHub
- Humanizer meets all your .NET needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities
- fast-member – Fast access to .net fields/properties – Google Project Hosting
-
NuGet & Libs Valuable
- UniversalTypeConverter – NuGet Must Haves
- Covariance and Contravariance FAQ – The C# Team – Site Home – MSDN Blogs
- The C# team posts answers to common questions and describes new language features in C#, .NET Framework, and Visual Studio IDE.
- Guardly – Source Code
-
Praca-Firmy
- Wytwarzamy specjalistyczne oprogramowanie dla biznesu.
- Sukces FP potwierdzony w rankingach, to w dużej mierze zasługa filozofii firmy. Dobro pracowników jest nadrzędną wartością w podejmowanych działaniach.
- Online GUID Generator
-
ORMs
-
LinqToSql
-
ScottGu
- ScottGu’s Blog – Using LINQ to SQL (Part 1)
- ScottGu’s Blog – LINQ to SQL (Part 2 – Defining our Data Model Classes)
- ScottGu’s Blog – LINQ to SQL (Part 3 – Querying our Database)
- ScottGu’s Blog – LINQ to SQL (Part 4 – Updating our Database)
- ScottGu’s Blog – LINQ to SQL (Part 5 – Binding UI using the ASP:LinqDataSource Control)
- ScottGu’s Blog – LINQ to SQL (Part 6 – Retrieving Data Using Stored Procedures)
- ScottGu’s Blog – LINQ to SQL (Part 7 – Updating our Database using Stored Procedures)
- ScottGu’s Blog – LINQ to SQL (Part 8 – Executing Custom SQL Expressions)
-
UnitOfWork & Testing
- Stu’s Blog: Working together: LINQ to SQL, IRepository, Unit Of Work and Dependency Injection
- Code rant: Repository.GetById using LINQ Expression Syntax
- Code rant: Using the IRepository pattern with LINQ to SQL
- Linq to Sql and the Unit of Work pattern
- lukesampson/LinqToSQL-test-extensions · GitHub
- How To Unit Test – Linq to SQL and Mocking – Ben Hall’s blog
- Kazi Manzur Rashid’s Blog – 100% Unit Testable Linq To Sql Repository
- Mehfuz’s WebLog – Unit testing LINQ to SQL
-
NH
- Context Sessions – NHibernate Forge
- LINQ to SQL Tips 9: Understanding DataContext’s internal caching – Dinesh’s Cyberstation – Site Home – MSDN Blogs
- Caching the results of LINQ queries | Monty’s Gush
- .net – How do you implement caching in Linq to SQL? – Stack Overflow
- Retrieving Objects from the Identity Cache (LINQ to SQL)
- ORM wars: Comparing nHibernate, LINQ To SQL & the Entity Framework « Ben Morris. Software architect.
- LinQ vs Entity Framework vs ADO.NET vs nHibernate :- Which is best? | LinkedIn
- Guidelines and Best Practices in Optimizing LINQ Performance – 03 Dec 2009 | SQL Server content from SQL Server Pro
- LINQ to SQL Best Practice
- Designing A Data Access Layer in LINQ to SQL
- asp.net – LINQ to SQL Web Application Best Practices – Stack Overflow
- Best Practices for using LINQ in your Data Access Layer
- Beginner’s Guide to LINQ to SQL
- 10 Tips to Improve your LINQ to SQL Application Performance | Sidar Ok Technical Blog !
- How to create an autonomous transaction in SQL Server 2008 – SQL Programmability & API Development Team Blog – Site Home – MSDN Blogs
- SQL Server Transactions and Error Handling – CodeProject
- SET IMPLICIT_TRANSACTIONS (Transact-SQL)
- sql server set implicit_transactions off and other options – Stack Overflow
- Implicit Transactions
- sql server 2005 – Difference between Implicit and Explicit Transaction – Stack Overflow
- Dixin’s Blog – Understanding LINQ to SQL (8) Transaction
- NHibernate – Learning with Code Samples
- Oleg Sych – » T4 Toolbox: LINQ to SQL classes generator
- Oleg Sych – » T4 Toolbox for Visual Studio 2012
- Oleg Sych
- linq2db/linq2db · GitHub
- How to create database and tables on SQL Server from scratch or programmatically?
- Create a SQL Server Database dynamically in C#
- Świadkowie – Wyznania okultysty [odc. 1 z 3] – YouTube
- LINQ to SQL T4 template reloaded » DamienG
- linqtodbmlrunner – A tool for automatically updating dbml files – Google Project Hosting
- Scripting changes to Linq To SQL DBML files | Adverse conditionals
- Adverse conditionals
- Unit Testing with a Data Context
- How To Unit Test – Linq to SQL, Linq to XML and Mocking
- Unit testing a business layer that uses a LINQ to SQL DataContext
- c# – Unit Testing practice with Linq to SQL – Stack Overflow
- c# – Unit Testing without Database: Linq to SQL – Stack Overflow
- LINQ to SQL – Unit Testing a Repository | My Adventures in Coding
- A generic “LINQ the SQL Classes” data context wrapper to dynamically funnel entities to the underlying data source – Knowledge Base – Knowledge – IngenuityWorking
- Repository pattern with Linq to SQL using IoC, Dependency Injection, Unit of Work – Stack Overflow
- asp.net – Advantage of creating a generic repository vs. specific repository for each object? – Stack Overflow
- LINQ to SQL as Unit of Work – Stack Overflow
- Linq to Sql and the Unit of Work pattern
- A DataContext wrapper for LINQ to SQL model.
- SZOKUJĄCE SKŁADNIKI WE FRYTKACH MCDONALDA
- HAND SIGNS PART 1: SIGNS OF SATAN!
- Useful helper extension methods (LINQ & null safe access) – our.umbraco.org
- Papież, który chciał wiernym narzucić herezję. Co zrobił Kościół? – PCh24.pl – prawa strona internetu. Portal informacyjny. Opinie i komentarze w dobrym stylu
- store nlog generated logs to Azure Blob Storage, in seperate columns – Stack Overflow
- tsql – Instead of trigger in SQL Server loses SCOPE_IDENTITY? – Stack Overflow
- C# Tutorial – Using The ThreadPool – Tech.pro
-
Validation
- LINQ to SQL Classes and Validation
- Using Enterprise Library 5.0 Validation Block with Linq to SQL classes | The ASP.NET Forums
- .NET Junkie – Integrating Enterprise Library Validation Application Block With LINQ to SQL and Entity Framework Part 1: Basic Integration
- Simple Validation with LINQ to SQL Classes – Beth Massi – Sharing the goodness – Site Home – MSDN Blogs
- c# – Is there a better way to handle validation in LINQ to SQL? – Stack Overflow
- c# – LINQ to SQL: OnValidate() and custom domain model classes – Stack Overflow
- patterns & practices – Enterprise Library – Validation block in Linq to SQL
- linq to sql – LINQ2SQL: How to implement a generic maximum string length validation? – Stack Overflow
- .net – Obtain max length for a “string” column using LINQ to SQL – Stack Overflow
- Coding Instinct: Argument validation using attributes and method interception
- LINQ to SQL: All common operations (Insert, Update, Delete, Get) in one base class – CodeProject
- Walkthrough: Customizing the Insert, Update, and Delete Behavior of Entity Classes
- Responsibilities of the Developer In Overriding Default Behavior
- Insert, Update, and Delete Operations
- Customizing Insert, Update, and Delete Operations
- Implementing Business Logic (LINQ to SQL)
- Walkthrough: Customizing the Insert, Update, and Delete Behavior of Entity Classes
- Adding Business Logic By Using Partial Methods
-
Inheritance
- Basis of LINQ to SQL: Entity Inheritance – .net ready !!! – Site Home – MSDN Blogs
- Huagati DBML/EDMX Tools – Visual Studio Marketplace
- Huagati DBML/EDMX Tools – Huagati Systems Co., Ltd.
-
Linq-IQueryable
- Calling functions in LINQ queries
- This article describes method that allows you to reuse parts of LINQ queries across data access layer.
- c# – Custom Method in LINQ to SQL query – Stack Overflow
- c# – Adding a custom function in the linq statement – Stack Overflow
-
Servers-Systems-Apis
-
Sharepoint
-
Sp-O365
- Vardhaman Deshpande: Managing SharePoint 2013 Workflows with CSOM
- How to Create Sandboxed Solutions Without SharePoint Installed Locally | Toaster Tech
-
Custom Activity
- Sharepoint 2013 Workflow Custom Declarative Activity | Raquel Aline kb
- Creating Custom Code Activity and Using it in Visual Studio 2013 Workflows For SharePoint 2013
- HOW TO: Develop a workflow code activity in SharePoint 2013 – SharePoint Developer Support Team Blog – Site Home – TechNet Blogs
- SharePoint Online Helper Library – Home
- Dotnet by Example: Sharepoint Client Object Model: sites, roles, lists, documents, AD users and permissions
- SharePoint Online Service Description | Office 365 Service Descriptions
- Delete all SharePoint List Items using PowerShell | SharePointRyan.com
- Sometimes when I’m working on something related to SharePoint, I come across scenarios where I’m constantly building up test data in Lists. Frequently when doing this, I have a need to almost constantly delete and recreate list items. Rather than using the UI or writing nice PowerShell one-liners (which for the record I love doing),…
-
sps13
-
DistibutedCache
- Five Minute Cheat-Sheet on SharePoint 2013’s Distributed Cache Service
- Claims-Based Architectures
- AppFabric Caching Physical Architecture Diagram
- sharepoint 2013 workflow | Roy Kim on SharePoint
- Posts about sharepoint 2013 workflow written by Roy Kim
-
Blogs
- Roy Kim on SharePoint | Sharing my experiences on SharePoint and other technologies.
- Sharing my experiences on SharePoint and other technologies. (by Roy Kim)
- SteveMann’s Path
- Raghu’s SharePoint Column
- Create List item in Folders using Client Object Model | Raghu’s SharePoint Column
- Add, Update and Delete List Items Programmatically in Sharepoint
- Add, Update and Delete List Items Programmatically in Sharepoint
- CAML: Select SharePoint List Items with not empty column values « MarkiMarta.com
- CAML: Select SharePoint List Items with not empty column values
- SharePoint CAML Helper – Home
- List.GetItems method (Microsoft.SharePoint.Client)
- SharePoint 2013 Workflow: Installing and Configuring
- Harness the capabilities of SharePoint 2013’s new Workflow engine by following these easy steps to install and configure Workflow Manager for SharePoint.
- Working with the SharePoint 2013 Workflow Services Client Side Object Model
-
WorkflowManager
- Install and configure SharePoint 2013 Workflow | Share Your Point
- Marcin Siewnicki Microsoft introduced the new workflow engine in SharePoint 2013 – Workflow Manager. This service is based on Windows Workflow Foundation and brings new features to the SharePoint platform, such as scalability, new activities, REST, and instance management. This new engine is not available in the OOTB installation. A clean SharePoint installation offers only…
- Random Administration Stuff: Configure User Profile Service Application on SharePoint Server 2013
- Random Administration Stuff: Configure Managed Metadata Service Application on SharePoint Server 2013
- Setting up User Profile Synchronization in SharePoint 2013 « Howto « Adis Jugo // SharePoint MVP
- Step by step guide on setting User Profile Sync in SharePoint 2013
- SharePoint 2013: App Management Service – TechNet Articles – United States (English) – TechNet Wiki
- Technical articles, content and resources for IT Professionals working in Microsoft technologies
- Spca2014 harbar workflow
- Spencer HarbarDesigning, deploying and managing Workflow Manager farms
-
WF4
- Workflow Foundation 4 State Machine Service – Home
- WF4 Advanced State Machine Stuff – Ron Jacobs – Site Home – MSDN Blogs
- Workflow activity classes in SharePoint 2013
- DynamicValue – Working with complex data in a workflow
- Workflow Manager 1.0 Samples
- How to assign an argument to the variable in Workflow Foundation 4.0? – Stack Overflow
- (1) Newest ‘workflow-foundation-4’ Questions – Stack Overflow
- Newest ‘workflow-activity’ Questions – Stack Overflow
-
sps’10
- Locking Hints
- How do I query the Sharepoint database? – Stack Overflow
- SharePoint – Tech Bytes: SharePoint 2010 – The content databases, tables and SQL queries
- How to avoid the Top 5 SharePoint Performance Mistakes
- SharePoint: Using Batch-Updates to speed up performance?
- SharePoint 2010 Search ‘Dogfood’ Part 3 – Query Performance Optimization – Microsoft Enterprise Search Blog – Site Home – MSDN Blogs
- list – Is it possible to return only the count of the query? – SharePoint Stack Exchange
- SharePoint: SPList.GetItems(SPView).Count issue | SharePoint Learnings
- How to get count of list items in SharePoint 2010 if count is more than List View Threshold value? – SharePoint Stack Exchange
- Sharepoint Logics: Total Count of Items in a List in Sharepoint
- How to: Achieve Count(*) on a large SharePoint list | Martin Hatch – SharePoint Evangelist
- ContentIterator Class (Microsoft.Office.Server.Utilities)
- list – Different SPList.Items.Count & SPList.ItemCount – SharePoint Stack Exchange
- Handling Large Folders and Lists
- SPCAF | SPC110212: Dispose SPSite created by SPSiteCollection[] index operator
- Best Practices: Using Disposable Windows SharePoint Services Objects
- Delete Folders, Sub-Folders from SharePoint Library Programmatically | Salaudeen Rajack’s SharePoint Diary
- Delete a Folder from a Sharepoint Document Library | More Soma Please…
- Delete all SubFolders in a Document Library or Photo List | Sharepoint Nectar
- Właściwość SqlConnection.ConnectionString — (System.Data.SqlClient)
- SPQuery and the List View Threshold | Outside the Box
-
SpQuery
- SPQuery with Boolean and DateTime – SaurabhKV – Site Home – MSDN Blogs
- SharePoint Sandeep: SPQuery Few important things
- Aidan Garnish | Using SPQuery and CAML to filter and order
- How to Write an SPQuery to Sort Your List | SharePoint Development & Ops
- Spquery in Sharepoint 2010 – Tutorial – Learning SharePoint
- My SharePoint Notes: Using CAML and SPQuery to query using dates
- SPQuery with datetime field
- In Moss We Trust – Sharepoint Blog: SPQuery syntax
- SharePoint Blog: SPQuery & CAML Query in SharePoint
- Avinash: CAML Tips n Tricks
- How to get recurring items with SPQuery by a specific ID
- Stefan Stanev’s SharePoint blog: SPQuery Scope and ModerationType ViewAttributes
- SPViewScope enumeration (Microsoft.SharePoint)
- Show All Items without Folders in SharePoint | Rai’s SharePoint Blog
- SP Daily Tips: Using Folder,FilesOnly,Recursive,RecursiveAll in SPquery in SharePoint
- SPQuery.ViewAttributes property (Microsoft.SharePoint)
- How to handle Transactions using Sharepoint Object Model
-
Delete
- Document Libraries: SPList and SPFolder.Delete Differences | Nick Grattan’s Blog
- Deleting all the items from a large list in SharePoint – SharePoint Stack Exchange
- SPFolder / SPList: Deleting versus Recycling | Nick Grattan’s Blog
- SPFolder.Recycle method (Microsoft.SharePoint)
- Matthew Yarlett: Well that was fun! (Bulk deleting items from a SharePoint list)
- Bulk deletion sharepoint list items
- Efficiently Delete / Purge All Items from a SharePoint List | merill.net
- Remove items from a huge SharePoint list | Bram Nuyts
- SharePoint Tricks and Techniques: Bulk Delete List Items
- How to create/delete multiple items in a transaction
- Stefan Stanev’s SharePoint blog: SPWeb ProcessBatchData – Display method
- SPWeb.ProcessBatchData method (Microsoft.SharePoint)
- Deleting Items using ProcessBatchData method
- Stefan Stanev’s SharePoint blog: Tips for using SPWeb.ProcessBatchData
-
Tools & Libs
- Open Source and Free Tools, WebParts, Utilities for SharePoint 2010 and SharePoint 2013
- Top free SharePoint utilities and tools for enterprises
- Most useful free SharePoint 2010 Utilities/libraries? – Stack Overflow
- CKS: Development Tools Edition – Home
- patterns & practices SharePoint Guidance – Home
- Application Foundations for SharePoint 2010
- tools and utilities – SharePoint is Awesome!
- SharePoint Tools & SharePoint Utilities – A-Z
- SharePoint Server Tools and Utilities
- Assembly Versioning in SharePoint | Andy Burns’ SharePoint Blog
- Comparisons of Mocking Frameworks for SharePoint Development – Developer – NothingButSharePoint.com
- TDD in Sharepoint Mocking/Testing user privilages – Stack Overflow
-
Sps-Versions
- How to fix “Microsoft SharePoint is not supported with version 4.0.30319.225 of the Microsoft .Net Runtime” in PowerGUI | YBBEST SharePoint Pie
- Q269515 – Unit Test Runner – Exception: Microsoft SharePoint is not supported with version 4.0.30319.1 of the Microsoft .Net Runtime | DevExpress Support Center
- 2010 – Microsoft SharePoint is not supported with version 4.0.30319.225 of the Microsoft .Net Runtime – SharePoint Stack Exchange
- SharePoint is not supported with version 4.0.30319.239 of the Microsoft .Net Runtime.
- How to support multiple versions of SharePoint in a single Visual Studio solution
- Wictor Wilén – SharePoint MCA, MCSM, MCM and MVP – Web Part Versioning with assembly redirection
- Assembly Redirection and SharePoint 2010 – End User – NothingButSharePoint.com
- Resolved: Could not load file or assembly ‘Microsoft.SharePoint.Sandbox, Version=12.0.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXX’ or one of its dependencies… | Jim Mathew’s Sharepoint Blog
- sadomovalex’s blog: Assembly binding redirect in Sharepoint 2010: how old code for SP 2007 works in SP 2010
- Using publisher policy assemblies
-
CMS
- Home – mojoPortal Demo
- mojoPortal – Advanced Websites Made Easy
- mojoPortal is an easy to use open source content management system for building modern mobile friendly web sites
- 12+ open source projects for .NET you probably didn’t know about. : Webdistortion
- Open Source – Microsoft
- DigiOz .NET Portal download | SourceForge.net
- DigiOz .NET Portal download. DigiOz .NET Portal 2017-02-28 19:42:20.164000 free download. DigiOz .NET Portal ASP.NET MVC Based Portal CMS System to Create an Instant Website
- Open Source Portals in C#
- Top 5 .NET Based CMS (Content Management System) – CodeProject
- Top 5 .NET based CMS (Content Management System); Author: Gaurav5582; Updated: 29 Jan 2014; Section: Content Management Server; Chapter: Enterprise Systems; Updated: 29 Jan 2014
- Kentico CMS prices and licenses overview | Kentico CMS for ASP.NET
- Kentico CMS is transparent in its license pricing. See your license price right away.
- Umbraco – The open source ASP .NET CMS
- Umbraco is the leading open source ASP.NET CMS. You can start using Umbraco in 2 minutes, by taking a free trial of Umbraco Cloud.
- Web Content Management System – ASP NET Web CMS by Progress Sitefinity
- Sitefinity is a modern ASP.NET Web CMS, delivering intuitive web content management for business professionals, robust CMS development environment and rich end user experience. See our online demonstration and download a free trial now.
- Orchard
-
DPS
-
Solutions & Apps
- Solutions and Applications – Wszystkie dokumenty
-
Hyper-V
- Copy Files From Host To Virtual Machine In Hyper V | MustBeGeek
- How to share files between a Hyper-V host and its virtual machines :: Virtual Platforms :: Admin Tips :: Windows Server 2008 :: Windows Server 2008/2003/2000/XP/NT Administrator Knowledge Base :: KBase Tips :: WindowsNetworking.com
- Andrew Connell, MVP SharePoint Server – Allowing a host machine to talk to guest VM’s in Hyper-V (and vice versa)
- Get the Most Out of Your Windows 8 Hyper-V Experience | chentiangemalc
- Windows 8 Client Hyper-V copy/paste «
- Step by Step Guide to Create Window Hyper-V Virtual Machine for SharePoint testing environment «
- Quick start: Deploy single server in an isolated Hyper-V environment (SharePoint Server 2010)
- Remote Desktop Connection to Hyper-V Virtual Machine | Leland’s snippets
- Remote Desktop Settings For A Hyper-V VM | Aidan Finn, IT Pro
-
Abby
- Account Settings – ABBYY Cloud OCR SDK
- Quick Start Guides
- OCR SDK API Reference
- processTextField Method
- Deliver documents and metadata to SharePoint for accessing and sharing across the enterprise
-
Azure
- Pricing Details – SQL Database | Microsoft Azure
- REST service using ASP.NET Web API and SQL Database
- Step by Step walkthrough to host WCF service in Windows Azure
- azure-content/machine-learning-walkthrough-5-publish-web-service.md at master · Azure/azure-content · GitHub
- Cloud Services
- Pricing Details – Virtual Machines | Microsoft Azure
- Microsoft Azure – Innovation, Quality and Price | Microsoft Azure Blog
- Developing Azure Applications
- Step by Step Guide to Create First Windows Azure Application | debugmode
- Creating ASP.NET Web Projects in Visual Studio 2013 | The ASP.NET Site
- Enable HTTPS for an Azure website – .NET Dev Center
- Incompabiliies Azure – MS SQL
- Identifying Incompatibility Issues When Migrating SQL Server Database to Windows Azure — DatabaseJournal.com
-
Dundas
- Gallery of Dashboard Samples | Dundas Data Visualization
- Help Overlay – Dashboard Add-on
- Label (Rich Text) – Properties
- Parameter Text Box – Properties
- Dundas Dashboard Support | Dundas Data Visualization
- Dashboard How-to Videos
- Dundas Dashboard 5 Documentation
- Scripting in Dundas Dashboard
- Dundas Dashboard 5 Script Library
- Formatting Rich Text Label
-
License-Maitenance
- Dundas Dashboard Support Policy
-
.Net-api
- Dundas Dashboard Administration API
- How to read data from a control
- Setting Filter Values to Multiple Parameters By Script
- Add, modify, delete values on a data control at runtime
- Passing Parameters Between Dashboard And DashBlock Viewer
- Indicator Light Icons – Download 145 Free Indicator Light Icon (Page 1)
-
OCR
- OCR with Microsoft® Office – CodeProject
-
Services-IO
-
WCF
- ServiceBehaviorAttribute.ConcurrencyMode Property (System.ServiceModel)
- ConcurrencyMode Enumeration (System.ServiceModel)
- WCF and threading | The ASP.NET Forums
- Maintain HTTP Session State in WCF REST Services with HttpWebRequest – CodeProject
- 3 Ways to generate proxy for WCF Service – CodeProject
- In Windows Communication Foundation, for a client application to communicate with a WCF Service, we have following options: Using ChannelFactory Generating Proxies I have already discussed about difference between ChannelFactory and Proxies in one of my previous WCF Tutorial on this blog. In this ar; Author: Imran Abdul Ghani; Updated: 16 Jun 2014; Section: Windows Communication Foundation; Chapter: Platforms, Frameworks & Libraries; Updated: 16 Jun 2014
- Calling a WCF Self Hosted Console Application – WCF Tutorial
- How to consume a WCF Self hosted Console application? | Calling a Self Hosted WCF Service.
- 3 Ways to generate proxy for WCF Service – WCF Tutorial
- An practical implementation to generate proxy for WCF service using all 3 options | Adding service Reference | using svcutil.exe | Implementing ClientBase.
- c# – How to force WebService reference to implement common interface? – Stack Overflow
- Tasks and the Event-based Asynchronous Pattern – .NET Parallel Programming – Site Home – MSDN Blogs
- The blog of the team at Microsoft that develops Parallel Extensions to the .NET Framework. This includes the Task Parallel Library and Parallel LINQ.
- How to: Implement an Asynchronous Service Operation
- 4 Simple Steps to Consume WCF Service using Silverlight – CodeProject
- 4 simple steps to consume WCF service using Silverlight; Author: Shivprasad koirala; Updated: 14 Aug 2010; Section: Silverlight; Chapter: Web Development; Updated: 14 Aug 2010
- Using WCF Service with Silverlight – CodeProject
- This article shows how to use WCF service with Silverlight; Author: Rahman Masudur; Updated: 30 Sep 2011; Section: Silverlight; Chapter: Web Development; Updated: 30 Sep 2011
- Async WCF Today and Tomorrow
- In the near future, all of my web services will be changed to REST APIs served via the Web API library. However, for now I do have some WCF services that are implemented using the Async CTP, and I thought it would be helpful to describe how it was done.
- How to: Implement a WCF Asynchronous Service Operation with Task – Ron Jacobs – Site Home – MSDN Blogs
- c# – Using asynchronous tasks to call synchronous WCF service – Stack Overflow
- c# – How can I use async/await to call a webservice? – Stack Overflow
- Task.Run Etiquette Examples: Don’t Use Task.Run in the Implementation
- Last time we looked at using Task.Run for the wrong thing (code that is not CPU-bound). So let’s move on to the proper use case of Task.Run: CPU-bound code. We start off with some existing code, which synchronously does some heavy calculations.
-
WebServices
- w3c – How does MTOM work? – Stack Overflow
-
UnitTesting
-
xUnit
- Shared Context between Tests > xUnit.net
- Overview
- Should testing for .net – the way Asserting *Should* be
- xUnit.net 2: Design and Extensibility – xunit-v2.pdf
- Running Tests in Parallel > xUnit.net
- Creating your own XUnit Extension – Ben Hall’s Blog
- xUnit.net 1.9 Extensibility – Brice’s Blog
- Lately, I’ve taken to using [xUnit.net][1] as my unit testing framework of choice for .NET projects. The API is verysimple and straightforward as it tries not to re-invent concepts that are already a part of the language. For exampleconstructors and IDisposable are used instead of some new setup and teardown feature. It also makes great use ofgenerics and lambdas to keep its API surface to a minimum.
- c# – XUnit.net global runners – Stack Overflow
- Getting Started with xUnit.net (desktop) > xUnit.net
- Capturing Output > xUnit.net
- xUnit.net 2: Design and Extensibility – xunit-v2.pdf
- Xunit: output test results in xunit format — nose 1.3.7 documentation
- Xunit custom traits for categories
- Running xUnit.net tests in MSBuild > xUnit.net
- HowTo: Team Foundation Server and xUnit | Strobaek Blog
- Run Tests in Your Build Process
- Build on the Team Foundation Service | Microsoft Application Lifecycle Management
- Learn to use Visual Studio, Visual Studio Team Services, Application Insights and Team Foundation Server to decrease rework, increase transparency into your application and increase the rate at which you can ship high quality software throughout the application lifecycle
- xUnit or NUnit with Visual Studio Online Build
- Configure unit tests by using a .runsettings file
- Running XUnit test with ASP.NET DNX and TFS 2015 build | Fluent Bytes
- c# – XUnit.net capture the result of each test right after it runs – Stack Overflow
- Capturing Output > xUnit.net
- Home > xUnit.net
- Maria Marcano: xUnit.Net – Running the tests (TestCategory)
- How to programmatically run XUnit tests (for profiling with VS2015)? · Issue #542 · xunit/xunit · GitHub
- xunit – xUnit.net is a free, open source, community-focused unit testing tool for the .NET Framework.
- c# – Extend xUnit.NET to use custom code when processing a class and locating test methods – Stack Overflow
- GitHub – ipjohnson/SimpleFixture: Testing fixture for .Net
- SimpleFixture – Testing fixture for .Net
- GitHub – vytautas-mackonis/xUnit.Paradigms
- Contribute to xUnit.Paradigms development by creating an account on GitHub.
- GitHub – brendanconnolly/Xunit.Categories
- Contribute to Xunit.Categories development by creating an account on GitHub.
- GitHub – AArnott/Xunit.Combinatorial: Adds combinatorial and pairwise testing capability to Xunit tests
- Xunit.Combinatorial – Adds combinatorial and pairwise testing capability to Xunit tests
- GitHub – cbaxter/JSTest.NET: Browserless JavaScript Unit Test Runner
- JSTest.NET – Browserless JavaScript Unit Test Runner
- GitHub – wespday/CategoryTraits.Xunit2: UnitTest and IntegrationTest attributes etc… for xUnit 2
- CategoryTraits.Xunit2 – UnitTest and IntegrationTest attributes etc… for xUnit 2
-
Fakes
- FakeItEasy – It’s faking amazing
- Home · FakeItEasy/FakeItEasy Wiki · GitHub
- FakeItEasy – The easy mocking library for .NET
-
MS.UnitTesting
- Microsoft.VisualStudio.TestTools.UnitTesting Namespace ()
- Unit/Integration Test Organization in a Large Visual Studio Solution – Stack Overflow
- Software Testing blog – Table of Contents
- Table of contents
- c# – Do you put unit tests in same project or another project? – Stack Overflow
- Top 20 NuGet packages for assertion – NuGet Must Haves
- Writing Great Unit Tests: Best and Worst Practices
- Steve Sanderson’s Blog
- 8 Principles of Better Unit Testing — Enterprise Systems
- Writing good, robust unit tests is not hard — it just takes a little practice. These pointers will help you write better unit tests.
- 5 Questions Every Unit Test Must Answer — JavaScript Scene — Medium
- How to Write Better Tests
- Unit Testing and Coding Best Practices for Unit Tests: A Test-Driven Perspective | Toptal
- Writing unit tests can be tough, but it shouldn’t be. If your tests are hard to write, you probably have problems elsewhere. Untestable code is a sign of deeper design problems. In this article, Toptal developer Sergey Kolodiy delivers a comprehensive breakdown of what makes code hard to test, and how to write better code that avoids these pitfalls with stronger unit testing.
- Acceptance Test Driven Development (TDD) Explained
- Acceptance test-driven development is what helps developers build high-quality software that fulfills the business’s needs as reliably as TDD helps ensure the software’s technical quality.
- Introduction to Test Driven Development (TDD)
- Naming standards for unit tests – Blog – Osherove