objNewsMast = NewsMasts.SingleOrDefault(Rec => Rec.NewsMastKey == 2);
if (objNewsMast != null)
{
objNewsMast.Dsc = "Today News";
objNewsMast.Title = "Latest News";
objNewsMast.Ext = "Mpg";
objeDC.SubmitChanges();
}
Monday, March 22, 2010
update record using LINQ programmtically in c#
-
Creating data driven application is one of the most commonly done task in our day today application development. In these applications, ...
-
The following article discusses the WPF command binding feature with relation to Mouse clicks. One of WPF powerful features is the bindin...
-
Languages of the real and artificial. Web MVC The Model-View-Controller (MVC) architecture is a standard architecture for interact...