What are the different Visual Basic features that support LINQ?

chinmay.sahoo

New member
Visual Basic includes the following features that support LINQ:

 Anonymous types - Enables you to create a new type based on a query result.
 Implicitly typed variables - Enables the compiler to infer and assign a type when you declare and initialize a variable.
 Extension method - Enables you to extend an existing type with your own methods without modifying the type itself.
 
LINQ appears for Language Integrated Question, which means that information recovery is no longer a individual terminology. The LINQ engine allows .NET programs to plug to data source without disturbing much about columns and rows The information you get is instantly established as things ready to use by your business logic.
 
Visual Basic includes the following features that support LINQ:
Anonymous types - Enables you to create a new type based on a query result.
Implicitly typed variables - Enables the compiler to infer and assign a type when you declare and initialize a variable.
Extension method - Enables you to extend an existing type with your own methods without modifying the type itself.
 
Back
Top