TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About compiled
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jignesh Trivedi (4)
Bechir Bejaoui (2)
Vishal Nayan (2)
Jitendra Mesavaniya (1)
Vijay Prativadi (1)
Alpesh Maniya (1)
Sam Hobbs (1)
Sudipta Sankar Das (1)
Harikrishnan N (1)
Jasminder Singh (1)
Sachin Kalia (1)
Wdenton (1)
Abhimanyu K Vatsa (1)
Kirtan Patel (1)
Related resources for compiled
No resource found
Optimizing LINQ Performance with Compiled Queries in .NET
7/22/2024 6:16:04 AM.
Compiled queries in LINQ (Language Integrated Query) are a powerful feature that can significantly improve the performance of your data access code, especially when dealing with repetitive queries.
Pre-Generated Views With a Code First Model Entity Framework 6.0
5/16/2024 5:39:46 AM.
Pre-generated views in Entity Framework 6.0 with a Code First model enhance performance by reducing the cost of view generation at runtime. By pre-compiling these views, you can significantly improve
Select Data Using Complied Query
4/18/2024 11:13:18 AM.
Learn how to optimize data retrieval in your application by utilizing compiled queries. This technique, often employed in Entity Framework and LINQ, enhances performance by pre-compiling queries, resu
Leveraging Compiled Queries for Enhanced Performance in LINQ
3/9/2024 9:17:22 AM.
Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution pl
The Basics of Creating a Static Library Using Visual C++
5/26/2023 9:05:21 AM.
Explains the basics of creating a static library, with explanations, and how to use a static library.
Creating MS Word Document using C#, XML and XSLT
3/29/2022 9:56:05 AM.
This simple program demostrate how to create well formatted MS Word documents using C#, XML and XSLT. Using XSLT to create Word documents requires the knowledge of RTF key words.
Xamarin.Forms - Compiled Bindings
12/3/2019 10:10:54 AM.
Learn what compiled bindings in Xamarin.Forms are and how to use them to improve performance and avoid spelling errors.
Integrate XML Data Within your ASP Page Using XslCompiledTransform Class: Part I
9/15/2014 6:44:00 AM.
I will provide two techniques as a part of this two parts tutorial to demonstrate how to transform and integrate XML contents within ASP web page.
Feature, Function and Keyword Not Supported by Natively Compiled Store Procedure
3/11/2014 3:23:38 PM.
This article lists the many features, functions and keywords that are not available in a natively compiled Stored Procedure.
Natively Compiled Stored Procedures in SQL Server 2014
3/6/2014 12:51:36 PM.
This article describes Natively compiled stored procedures (T-SQL procedures compiled to native code and access memory optimized tables) and their use.
Compiled Queries in LINQ
2/11/2014 3:02:11 PM.
This article explains the use of compiled queries to improve performance when a query is fired many times.
Precompiled Razor View Using RazorGenerator MVC and PreCompiledViewEngine in MVC 4
1/24/2014 7:29:49 PM.
A few days ago a question occured to me, can we share a single View across multiple projects? Yes in multiple projects. I thought about it and created a sample application to do that using RazorGenerator.Mvc.
Debugging a Compiled Component
10/31/2013 1:21:51 AM.
After an assembly is compiled into a dll in a release mode, it is very difficult to gather information from it such as runtime performance, parameters values, etc.
Precompiled and Pre-generated Views in the Entity Framework
2/13/2013 3:32:52 PM.
While working with the Entity Framework, we can reduce the delay of the initial view by creating the view at compile time instead of runtime
Normal LINQ Query to Compiled LINQ Query to Auto-Compiled LINQ Queries in Entity Framework 5
9/26/2012 11:42:33 PM.
In this article I'll be talking about query performances (EF1 to EF5) so that you can better understand the Entity Framework 5 query performance improvements.
Understanding Uncompiled XAML to design dynamic UI in WPF
9/18/2011 1:34:36 PM.
This is a specialized approach that makes sense in certain scenarios where we need highly dynamic user interfaces. We load part of the user interface from a XAML file at runtime using the XamlReader class from the System.Windows.Markup namespace.
6 Reasons to become an ASP.NET Programmer
3/2/2011 9:54:49 PM.
Here I give you 6 reasons to become an ASP.NET Programmer.
Using Compiled Regular Expressions
2/22/2010 1:10:45 AM.
This article explains about how to minimize performance degradation caused by frequently used complex regex using compiled Regular Expressions.
Use CompiledQuery.Compile method to build parameterized DLINQ queries
8/29/2008 8:09:10 AM.
In this article, I will make use of the CompiledQuery.Compile generated method which receives a Lambda expression as parameter, and then it generates a delegate that returns a generic IQueryable object that one can enumerate it through a foreach loop.