-
.Net Platform Independence
What is platform independence? Explain this concept in .NET environment.
-
Project and Project Architecture
Explain your Project and Project Architecture.
How will you start your explanation and what all information will you include. Suppose you have used HTML/Angularjs for UI, WCF Rest Services for service layer, Basic ORM for data mapping and SQL Server for data. -
How can we force the connection object to close after my datareader is closed ?
Command method Executereader takes a parameter called as CommandBehavior wherein we can specify saying close connection automatically after the Datareader is close.
pobjDataReader = pobjCommand.ExecuteReader(CommandBehavior.CloseConnection)
-
Assemblies and Deployment
How are assemblies involved and useful in Deployment?
-
How do you replace Carriage return via Search and Replace in word?
Recently I had to search and replace carriage return with space in word, I search the net and found ^p could be used as Carriage return Search and Replace input box.so just wanted to share it with you all, though could be basic but though it would help some one in search of same thing !!!
Ans