skip to main
|
skip to sidebar
Welcome Visitor to Tech-Interviews
This site will help you clear technical interviews
Pages
Home
Contact Us
How to convert IEnumerable collection to IQueryable collection ?
IEnumerable collection can be converted to IQueryable collection using
AsQueryable
method.
Example :
Object arrSearch is of IEnumerable
type
To convert into IQueryable use below :
IQueryable
arrQuerySearch = arrSearch.AsQueryable() ;
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
Difference between RegisterStartUpScript and RegisterClientScriptBlock ?
RegisterStartUpScript This adds the javascript code at the end of the page before the closing of form tag. RegisterClientScriptBlock Th...
Question : State whether below code would give compilation error or not ?
delegate string Delegate1(object o); delegate object Delegate2(string s); static string Dispaly(object o) { r...
What global variable is used to return error number of last Transact-SQL ?
@@ERROR is a global variable used to return error number of last T-SQL.
How to enable transaction in Web Service ?
Please follow below steps to enable transaction in Web Service : 1.Add a reference to System.EnterpriseServices.dll. 2.Add the System.Ente...
What is authentication and different types of ASP.NET authentication ?
Authentication is process of obtaining credentials such as username and password and validating the credentials. There are 3 types of ASP....
How to open pop up window using javascript ?
window.open
What is second normal form in SQL ?
To be in second normal form i.e 2NF , all information attributes or fields of the table are attributes of entity of table schema. All inform...
What is Replication in SQL ?
Replication is the way to keep data synchronised in multiple datbases. SQL Replication consists of two important part : Publisher - Datab...
What are various webmethod attributes in Web Service ?
The WebMethod attribute in Web Service provides the following properties: BufferResponse CacheDuration Description EnableSession Messa...
What is computed column ?
Computed Column is virtual column in table whose value is computed at runtime.The values are not stored in table but computed by the express...
Total Pageviews
Subscribe to Tech-Interviews by Email
Subscribe to Tech-Interviews
.NET Interview Questions
Home
.NET Framework
ASP.NET
C#
ADO.NET
OOPs
XML
SQL Server
Javascript
AJAX
Web Services
WCF
UML
Design Patterns
SSIS
SSRS
Project Management
LINQ
COM Components
ORACLE
UNIX Interview Questions
UNIX shell scripts
Important Links
C# 3.0 Enhancements
CLR stands for
Executive Openings at $100K & Up!
Subscribe To
Posts
Atom
Posts
Comments
Atom
Comments
No comments:
Post a Comment