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 DataContex
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Vijay Prativadi (7)
Mariusz Postol (1)
Prashant Nimbare (1)
Venkateshwar Reddy (1)
Rikam Palkar (1)
Emiliano Musso (1)
Rahat Yasir (1)
Shweta Lodha (1)
Neha (1)
Sandeep Singh Shekhawat (1)
Ajay (1)
Arunava Bhattacharjee (1)
Bechir Bejaoui (1)
Related resources for DataContex
No resource found
Programming in Practice - GUI - XAML - Description of the User Interface
7/9/2024 12:34:12 AM.
This article concerns selected issues related to the representation of process information in graphical form to develop a comprehensive User Interface. It presents XAML Domain-Specific Language as a d
Inserting Data in the Database Using LINQ to SQL
5/30/2024 10:28:32 AM.
Using LINQ to SQL, insert data into databases effortlessly. Utilize LINQ query expressions, entity classes, and DataContext to map objects to database tables. Ensure proper error handling and concurre
Code First Migrations In Entity Framework Step By Step
3/21/2024 7:25:30 AM.
Learn how to define model classes, configure database mappings, set up connection strings, and utilize Package Manager Console commands to manage migrations efficiently in your ASP.NET application.
DataContext And Autowire In WPF
1/4/2021 9:19:05 PM.
There are 3 ways to bind the View with ViewModel. One way is to bind DataContext Property within a XAML, Second is to assign DataContext within Code-Behind and last using ViewModelLocator.
Basic Outlines and Examples on MVVM Pattern
5/8/2015 5:36:12 PM.
This article explains some basic concepts about the MVVM pattern (Model View ViewModel).
MVVM, Simple Way You Can Think
10/26/2014 3:41:34 AM.
This article exlains MVVM in the simplest way you can think of.
Binding Source Objects in WPF
2/25/2014 2:45:29 PM.
This article will drive you through the various available bindings.
DataContex in WPF Using the C# and XAML
6/27/2013 1:24:45 PM.
In this article I am going to explain DataContext in WPF . The DataContext property in WPF is default source of binding because it is automatically inherited by all children of the element where it is assigned.
Aggregate Functions in Linq To SQL
6/18/2013 11:48:34 PM.
In this article I am going to explain how to use aggregate functions in LINQ to SQL as well as in SQL Server.
CRUD With LINQDataSource
2/24/2013 9:01:58 AM.
This article demonstrates an interesting and very useful concept in LINQ.
Delete Data With LINQ-to-SQL Via WCF Service
2/24/2013 8:59:38 AM.
This article demonstrates an interesting and very useful concept in LINQ-to-SQL.
Update Data With LINQ-to-SQL Via WCF Service
2/22/2013 12:23:53 PM.
This article demonstrates an interesting and very useful concept in LINQ-to-SQL.
Select Data With LINQ-to-SQL Via WCF Service
2/21/2013 12:27:03 PM.
This article demonstrates an interesting and very useful concept in LINQ-to-SQL.
Create or Delete Database Via LINQ-to-SQL
2/21/2013 12:23:08 PM.
This working demonstrates one of interesting and most useful concept in LINQ-to-SQL.
Select Data With UDF Via LINQ-to-SQL
2/21/2013 12:20:09 PM.
This article demonstrates an interesting and very useful concept in LINQ-to-SQL classes.
Perform queries using LINQ in VB.NET
12/1/2012 5:15:14 AM.
In this article I will show you how to extract data from SQL Server using LINQ.
Difference between DataContext and ItemsSource in WPF/Silverlight
9/29/2012 7:21:55 AM.
In this article I will try to illustrate the difference between DataContext and ItemsSource property in Silverlight/WPF.
EDM Framework CRUD Operations using DataContextObject
1/10/2012 12:53:16 AM.
Today, in this article let’s dig out really useful and mostly used by many companies, the well known Entity Data Model Framework by Performing CRUD Operations. So, before we get started I just want to make sure we don’t forget do some groundwork on theory which is related to this concept.
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.