Skip to content

Instantly share code, notes, and snippets.

@vquaiato
Created January 25, 2011 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vquaiato/795206 to your computer and use it in GitHub Desktop.
Save vquaiato/795206 to your computer and use it in GitHub Desktop.
selecionando arquivos de uma biblioteca Sharepoint
StringBuilder str = new StringBuilder();
str.Append("<OrderBy> ");
str.Append(" <FieldRef Name='Data' Ascending='False' /> ");
str.Append("</OrderBy> ");
str.Append("<Where> ");
str.Append(" <Eq> ");
str.Append(" <FieldRef Name='Visivel' /> ");
str.Append(" <Value Type='Boolean'>1</Value> ");
str.Append(" </Eq> ");
str.Append("</Where> ");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment