CodePlexProject Hosting for Open Source Software
Photo photo= (from p in context.Photots where p.id == 123 select p).Single(); photo.Title = This is new Title. // to make the update just do the following coment.SubmitChanges(); //This will fire the Update in LinqExtender where logic for flickr.photos.setMeta is written. //Flickr api support only alteration of Title and Description, more info can be found at flickr.photos.setMeta
Comment comment = (from c in context.Photots.Comments where c.Id == "1234" select c).Single(); comment.Text = "This is a updated comment."; coment.SubmitChanges();
var query = from photo in context.Photos where photo.ViewMode = ViewMode.Owner && photos.Extras == (ExtrasOption.Date_Posted | ExtrasOptions.Views) select photo;
context.Authenticate();
context.ClearToken();
var query = from photo in _context.Photos where photo.NsId == 'user's nsId' select photo;
Sign in to display notification settings.