Why Care About Code Quality?
We wanna be agile, what is agile means? Agile means we gonna get the feedback from customer/PM and based on that feedback, we go back and respond to those changes. So that in the next PM meeting we can say that here are the changes, you wanted us to do last time, so review it and then we can move forward.
AS sitting there with the customers and asking them what kind of change you need to make,...
Sunday, April 12, 2020
Saturday, September 15, 2018
Features from MVC2 vs MVC3 vs MVC4 vs MVC5 vs MVC6
MVC 2
Customer Side Validation
Templated Helpers
Regions
Nonconcurrent Controllers
Html.ValidationSummary Helper Method
DefaultValueAttribute in real life Method Parameters
Restricting Binary Data with Model Binders
DataAnnotations Attributes
Demonstrate Validator Providers
New RequireHttpsAttribute Action Filter
Templated Helpers
Show Model-Level Errors
MVC 3
Razor
Readymade venture formats
HTML 5 empowered...
Thursday, April 21, 2016
Could Not Find 'Xamarin.iOS'

Error: Could Not Find 'Xamarin.iOS'
You will get this error while building your xamarin ios/iphone/ipad project in visual studio.
To build ios apps in visual studio you need xamarin installed (at least xamarin.ios) on a mac machine in same network and link to that machine in visual studio.
you can link mac machine (xamarin installed...
Labels:
Error,
Visual Studio,
xamarin
Tuesday, August 25, 2015
ASP.NET: failed to register url access denied
to resolve the error : failed to register url access denied
Solution:
use window + R to open RUN
type below line in it and hit enter/run.
netsh http delete urlacl url=http://*:62940...
Thursday, March 12, 2015
Cleans all views, SPS, functions PKs, FKs and tables
/* Drop all non-system stored procs */
DECLARE @name VARCHAR(128)
DECLARE @SQL VARCHAR(254)
SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'P' AND category = 0 ORDER BY [name])
WHILE @name is not null
BEGIN
SELECT @SQL = 'DROP PROCEDURE [dbo].[' + RTRIM(@name) +']'
EXEC (@SQL)
PRINT 'Dropped Procedure: ' + @name
SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'P' AND...
Wednesday, December 10, 2014
'System.Linq.IQueryable' does not contain a definition for 'Include' and no extension method 'Include' accepting a first argument of type 'System.Linq.IQueryable' could be found
Error: 'System.Linq.IQueryable' does not contain a definition for 'Include' and no extension method 'Include' accepting a first argument of type 'System.Linq.IQueryable' could be found
Solution:
Add namespace System.Data.Entity;
Actually Include is not an extension method on Queryable, so it doesn't come with all the usual LINQ methods.
If you are using Entity Framework, you need to import namespace System.Data...
Tuesday, December 9, 2014
the type or namespace name 'expression' could not be found
To remove error "the type or namespace name 'expression' could not be found"
Add namespace System.Linq.Expressions.
as normally System.Linq is there in using part by default and expression class is under system.Linq.Expressions so we have to make it also in using...
Subscribe to:
Posts (Atom)