| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
15 Articles match "Products"
See all articles with
"Products"
| The Latest from Tony and Zuzana's World | MORE | | Use Common Instance Factory to Abstract Away the Dependency Injection Container You have to select a DI container from one of numerous proprietary and open-source products on the market and then marry yourself to it. Download the Common Instance Factory with WCF Extensions here and is also available on NuGet. while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. They key to making it all work is the use of Dependency Injection , also known as Inversion of Control, to delegate creation of types to an external container. DevelopMentor Courses - Wednesday, May 23, 2012 Peeling Back the Onion Architecture It is intended to provide some insurance against the evolution of technology that can make products obsolete not long after they are developed (the technical term is “deprecated”). For example, the ProductController class in the ASP.NET MVC application has a constructor that accepts an IProductService, which has methods to get categories and products. Download the code for this article. recently started a consulting project as an architect on an ASP.NET MVC application and quickly found myself immersed in the world of N* open source tools. The Web.Ui Enjoy. Tony and Zuzana's World - Saturday, October 8, 2011 Build a Multi-Project Visual Studio Template To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. Download the code for this article here. Earlier this year I authored an open-source toolkit, called Simple MVVM Toolkit , to help developers build Silverlight, WFP and Windows Phone applications based on the Model-View-ViewModel design pattern. Visual Studio makes it extremely easy to create a single-project template. Simply select Export Template from the File menu and follow the prompts. saferootprojectname$.Entities Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 | | The Best from Tony and Zuzana's World | MORE | | Peeling Back the Onion Architecture It is intended to provide some insurance against the evolution of technology that can make products obsolete not long after they are developed (the technical term is “deprecated”). For example, the ProductController class in the ASP.NET MVC application has a constructor that accepts an IProductService, which has methods to get categories and products. Download the code for this article. recently started a consulting project as an architect on an ASP.NET MVC application and quickly found myself immersed in the world of N* open source tools. The Web.Ui Enjoy. Tony and Zuzana's World - Saturday, October 8, 2011 EF4 compared to NHibernate On the other side, NH is a much a more mature ORM product than EF and has better batching capabilities. It is also more extensible, especially as an open-source product. The end result will be greater parity between the two products going forward, making the choice even more challenging and determined mostly by philosophical and strategic factors. Last week while teaching my new LINQ and Entity Framework course I got a question asking me to compare EF4 with NHibernate. Not having worked extensively with NHibernate, I wasn’t in a position to address the question. Tony and Zuzana's World - Wednesday, January 13, 2010 Simple MVVM Toolkit versus MVVM Light Toolkit By deploying it with an installer (with auto updates from the VS Extensions Gallery and NuGet), documentation, samples and VS templates and snippets, I hope to have helped make your development experience with MVVM more productive and rewarding. Now that I’ve released Simple MVVM Toolkit version 2 , people are starting to ask how it stacks up against some of the other MVVM Toolkits out there. MVVM, which stands for Model-View-ViewModel , is a UI design pattern that provides better maintainability, testability and designability.) Simple MVVM Toolkit would fall into the latter category. Tony and Zuzana's World - Saturday, April 23, 2011 | - Use Common Instance Factory to Abstract Away the Dependency Injection Container
You have to select a DI container from one of numerous proprietary and open-source products on the market and then marry yourself to it. Download the Common Instance Factory with WCF Extensions here and is also available on NuGet. while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. They key to making it all work is the use of Dependency Injection , also known as Inversion of Control, to delegate creation of types to an external container. DevelopMentor Courses - Wednesday, May 23, 2012 - Tackling the Problem of Modal Dialogs in MVVM
private void ProductsLoaded( List < Product > entities, Exception error) { if (error != ErrorNotice( this , new NotificationEventArgs < Exception > ( "Unable to retrieve products" , error)); else Products = entities; } } }. Here is an example of a event fired by the view-model to indicate that a particular product is available for order. In this case we wish to prompt the user by displaying a ChildWindow with a message that shows the product name and asks the user to click either the Yes or No button. Another benefit is testability. Tony and Zuzana's World - Friday, January 28, 2011 - Build a Multi-Project Visual Studio Template
To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. Download the code for this article here. Earlier this year I authored an open-source toolkit, called Simple MVVM Toolkit , to help developers build Silverlight, WFP and Windows Phone applications based on the Model-View-ViewModel design pattern. Visual Studio makes it extremely easy to create a single-project template. Simply select Export Template from the File menu and follow the prompts. saferootprojectname$.Entities Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 - Who is Improving LINQ to SQL? Plinqo by Code Smith!
" The answer is a product called Plinqo , created by the makers of the code-generation tool, Code Smith. A lot of people have lingering doubts about whether to use LINQ to SQL for real-world applications, especially since Microsoft has left it to languish in favor of the new version of the Entity Framework slated for release with.NET 4.0 and Visual Studio 2010. Nevertheless, I have a consulting client, Credit Solutions , that uses LINQ to SQL for their line-of-business web application and has had a very favorable experience working with it. file under a common folder. Tony and Zuzana's World - Tuesday, August 4, 2009 - Who is Improving LINQ to SQL? Plinqo by Code Smith!
The answer is a product called Plinqo , created by the makers of the code-generation tool, Code Smith. A lot of people have lingering doubts about whether to use LINQ to SQL for real-world applications, especially since Microsoft has left it to languish in favor of the new version of the Entity Framework slated for release with.NET 4.0 and Visual Studio 2010. Nevertheless, I have a consulting client that uses LINQ to SQL for their line-of-business web application and has had a very favorable experience working with it. The question is, “Who is adding new features to LINQ to SQL? Tony and Zuzana's World - Tuesday, August 4, 2009 - Life Just Got Easier: Simple MVVM Toolkit for Silverlight
In this case, achieving zero code-behind results in greater complexity and lowers developer productivity. If you’ve made a decision to start using the Model-View-ViewModel pattern (abbreviated as MVVM) for Silverlight development, you’re faced with a rather steep learning curve and a scarcity of of accepted standards and best practices. ve read no less than three Silverlight books. All of them have a chapter on MVVM, in which the pattern is explained and some fairly basic examples are provided. That day has now arrived. Much of it boils down to your needs and preferences. Enjoy. Tony and Zuzana's World - Saturday, January 1, 2011 - EF 4.0 N-Tier Support: Take 2
Select "Generate from Database" and choose the following tables: Customers, Orders, Order_Details, Products, Categories. Add an interface called INorthwindService with a [ServiceContract] attribute and add methods with [OperationContract] attributes: [ ServiceContract ] public interface INorthwindService { [ OperationContract ] Product GetProduct( int productId); [ OperationContract ] Order GetOrder( int orderId); [ OperationContract ] Order SaveOrder( Order order); [ OperationContract ] void DeleteOrder( Order order); }. Entity Framework 4.0 Move the Northwind.Types.tt Tony and Zuzana's World - Thursday, November 12, 2009 %>
380 Articles match "Products"
See all articles with
"Products"
| The Latest from DevelopMentor | MORE | | Agile Clinic: Dear Allan, we have a little problem with Agile. Could it be that the Product Owners are not sufficiently flexible in what they are asking for and are therefore setting the team up to fail each sprint? 'Consider this blog an Agile Clinic. On Friday an e-mail dropped into my mailbox asking if I could help. The sender has graciously agreed to let me share the mail and my advice with you, all anonymously of course… The sender is new to the team, new to the company, they are developing a custom web app for a client, i.e. they are an ESP or consultancy. the Developers work in sprints, estimating tasks in JIRA as they go. And yo have Jira? Allan Kelly's Blog - Sunday, April 28, 2013 A Roundup of MongoDB Management Tools The data is a great asset when optimizing applications during development and potentially invaluable when diagnosing production issues. 'I’ve been working with MongoDB for a long time now. Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. SQL Server Management Studio ). Since then, things have changed significantly. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. The news is good. There are many different options to choose depending on your platform and use-cases. link]. link]. Michael C. Kennedy's Weblog - Monday, April 22, 2013 Requirements and Specifications 'As I was saying in my last blog, I’m preparing for a talk at Skills Matter entitled: “Business Analyst, Product Manager, Product Owner, Spy!” So now I turned to a standard textbook on requirements: Discovering Requirements: How to Specify Products and Services by Alexander and Beus-Dukis. which I should just have entitled it “Requirements: Whose job are they anyway?” and so I’ve been giving a lot of thought to requirements. Bear with me, I’ll come back to this point at the end.) So I turned to my bookshelves…. turned to the index and…. nothing. Which bring us back to BDD. Allan Kelly's Blog - Monday, April 15, 2013 | -
| The Best from DevelopMentor | MORE | - Product Management an open secret, a differenciator
At the Skills Matter Agile Lean Kanban exchange the other week someone - sorry I missed you name - told me about a report from the BBC on Product Management. It turns out the report is from a branch of the BBC I didn’t know about, “BBC Academy” and it entitled “The State of Product Management 2010.” Its well worth reading if you have an interest in Product Management or the UK software development scene. Although I’ve not blogged about it for a while Product Management is one of my passions. In Silicon Valley there is a well developed role called the Product Manager. Allan Kelly's Blog - Tuesday, December 14, 2010 - Minimal Viable Team to create a Minimally Viable Product
Despite being a bit of a mouthful to say “Minimal Viable Product” and the even more difficult to say “Minimally Marketable Feature” (also known as a “Quantum of Value” or “Business Value Increment”) are very useful concepts. What makes gives them killer power is that they speak to a secret belief held by many people (not just managers) that teams gold-plate development and create products with more than is needed. The same applies to product development: saying Yes to a feature is easy, saying No is hard, but unless you say No a lot more than Yes you won’t have a MVP. Allan Kelly's Blog - Monday, October 8, 2012 - Productivity Power Tools 2012 – February 2012
A new update to Productivity Power Tools 2012! This update includes a couple of bug fixes including a crashing bug in the Custom Document Tab Well on debug. Download now! Link: [link]. Download: ProPowerTools.vsix. Visual Studio 2012 DevelopMentor Courses - Monday, February 25, 2013 - Query composition with the ASP.NET Web API
12: public Product Get( int id). Loading the products with the original URL returns exactly the same result as before. This request “ [link] ” returns only product 11 to 15 ordered by the product name. Having the ASP.NET Web API as a REST service returning data is kind of nice but to be efficient on the wire we don’t want to return more data that required only to discard it in the client. As we have seen in a previous post just returning a collection data was real easy. As it turns out changing the service so the client can filter data is almost just as easy. 13: {. The Problem Solver - Wednesday, March 21, 2012 - EF4 compared to NHibernate
On the other side, NH is a much a more mature ORM product than EF and has better batching capabilities. It is also more extensible, especially as an open-source product. The end result will be greater parity between the two products going forward, making the choice even more challenging and determined mostly by philosophical and strategic factors. Last week while teaching my new LINQ and Entity Framework course I got a question asking me to compare EF4 with NHibernate. Not having worked extensively with NHibernate, I wasn’t in a position to address the question. Tony and Zuzana's World - Wednesday, January 13, 2010 %>
| | |