<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Samuel {n} Mensah</title>
	<atom:link href="http://samuelnmensah.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://samuelnmensah.com</link>
	<description>The enigma of software development.</description>
	<lastBuildDate>Tue, 15 May 2012 09:21:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>LINQ: ToLookup</title>
		<link>http://samuelnmensah.com/2012/05/linq-tolookup/</link>
		<comments>http://samuelnmensah.com/2012/05/linq-tolookup/#comments</comments>
		<pubDate>Tue, 15 May 2012 09:21:09 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=213</guid>
		<description><![CDATA[ToLookup is an extension method in Linq which returns a data structure comprising of key value pairs. It&#8217;s similar to the ToDictionary extensions method. However, the main difference is that it can contain multiple keys of the same value while a dictionary has to have distinct keys. Lets look at an example. void Main() { [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a title="ToLookUP" href="http://msdn.microsoft.com/en-us/library/bb549073.aspx" target="_blank">ToLookup</a></strong> is an extension method in Linq which returns a data structure comprising of key value pairs. It&#8217;s similar to the ToDictionary extensions method. However, the main difference is that it can contain multiple keys of the same value while a dictionary has to have distinct keys.</p>
<p>Lets look at an example.</p>
<pre class="brush:csharp">void Main()
{

//Create a list of strings
List&lt;string&gt; cars = new List&lt;string&gt;
{
"Toyota",
"Lexus",
"Mercedes Benz",
"Bentley",
"BMW",
"Acura"
};
//Generate Lookup Structure based on length of string
var carList = cars.ToLookup (c =&gt; c.Length);

foreach (var car in carList[6])
{
Console.WriteLine(car);
}

}</pre>
<p>Output:</p>
<p>Toyota<br />
Bentley</p>
<p>In this example the ToLookup method receives a Func delegate which is specified as a lambda expression. A data structure is created which is indexed on the length of characters for each. One or more cars can have the same length (thus making it a lookup)</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2012/05/linq-tolookup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Azure Basics: What you should know</title>
		<link>http://samuelnmensah.com/2012/04/windows-azure-basics-what-you-should-know/</link>
		<comments>http://samuelnmensah.com/2012/04/windows-azure-basics-what-you-should-know/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 01:20:35 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Windows Azure]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=203</guid>
		<description><![CDATA[While developing Windows Azure Applications it&#8217;s important to get a firm grip of the basic terminology associated with Azure.Here is a list of the most important terms you need to be familiar with in order to begin Windows Azure development. WebRoles &#38; WorkerRoles: Every Azure application consists of roles in the form of either WebRoles or WorkerRoles.Web [...]]]></description>
			<content:encoded><![CDATA[<p>While developing Windows Azure Applications it&#8217;s important to get a firm grip of the basic terminology associated with Azure.Here is a list of the most important terms you need to be familiar with in order to begin Windows Azure development.</p>
<p><strong>WebRoles &amp; WorkerRoles:</strong></p>
<p>Every Azure application consists of roles in the form of either WebRoles or WorkerRoles.Web roles are synonymous with &#8216;web applications&#8217; while Worker roles are synonymous with &#8216;Windows services&#8217;.</p>
<p>Your typical web role would be a  ASP.NET web application which a user would typically interact with.The web role is designed for code that directly interacts with web browsers or other HTTP clients. It depends on IIS, Microsoft&#8217;s web server.</p>
<p>A worker role on the other hand is designed to be running all the time (just like a windows service). It starts up and is running all the time. It&#8217;s best use is typically for some kind of background processing.</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2012/04/workerrole.jpg"><img class="alignright size-full wp-image-205" title="workerrole" src="http://samuelnmensah.com/wp-content/uploads/2012/04/workerrole.jpg" alt="" width="188" height="90" /></a></p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2012/04/webrole.jpg"><img class="size-full wp-image-204 alignnone" title="webrole" src="http://samuelnmensah.com/wp-content/uploads/2012/04/webrole.jpg" alt="" width="181" height="298" /></a></p>
<p>&nbsp;</p>
<p><strong>Service Definition (CSDEF) file</strong></p>
<div>
<p> The service definition (CSDEF) file is an XML file that describes the various roles that make up your complete application. The CSDEF contains a WebRole or  a WorkerRole element for each role that you want in your application. Some items that would be specified in the CSDEF are:</p>
<div>
<ul>
<li>Certificates</li>
<li>Configuration Setting Names</li>
<li>Input Endpoints</li>
<li>Internal Endpoints</li>
<li>Import Modules</li>
<li>Local Storage</li>
<li>Startup Tasks</li>
</ul>
</div>
</div>
<p><strong>Service Configuration (CSCFG) file</strong></p>
<div>
<p>The service configuration(CSCFG) is an XML file that descirbes settings that can be changed without redploying your application. The CSCFG file contains a Role element for each role in your application. The ff is a list of items that can be defined in the CSCFG</p>
<div>
<ul>
<li><span style="color: #666666; font-family: 'Segoe UI', Helvetica, Garuda, Arial, sans-serif;">OS Version</span></li>
<li><span style="color: #666666; font-family: 'Segoe UI', Helvetica, Garuda, Arial, sans-serif;">Instances</span></li>
<li><span style="color: #666666; font-family: 'Segoe UI', Helvetica, Garuda, Arial, sans-serif;">Configuration Settings</span></li>
</ul>
<p><strong>Data Management</strong></p>
<p>Windows Azure provides three data management options</p>
<p>&nbsp;</p>
<p><span style="color: #666666; font-family: 'Segoe UI', Helvetica, Garuda, Arial, sans-serif;"><img class="alignnone" title="Datamanagment" src="https://www.windowsazure.com/media/net/chappell_understanding03.png" alt="" width="360" height="223" /><em>source:https://www.windowsazure.com/en-us/develop/net/fundamentals/intro-to-windows-azure</em></span></p>
<p><strong>SQL Azure</strong> provides a cloud based version of SQL Server. It provides all of the key features of a relational database managment system (RDBMS).</p>
<p><strong>Blobs</strong></p>
<p>Blobs provide a way to store large amounts of unstructured, binary data, such as documents, pictures, audio, video, etc. A storage account has blob containers and a container contains blobs. Containers are similar to directories and contain blobs. There are two kinds of Blobs:</p>
<ul>
<li><strong>Block Blobs</strong> are ideal for most scenarios and allow you to easily insert, delete, and reorder blocks within a blob.</li>
<li><strong>Page Blobs</strong> are typically used for virtual hard drives (VHDs) and are much less commonly used than Block Blobs. Page Blobs allow you to save money when blobs contain long runs of zeros and have better performance for random write operations</li>
</ul>
<p><strong>Tables</strong></p>
<p>Tables provide a non-relational key/property bag collection useful for storing tabular data such as customer information, orders, news feeds, and game scores.</p>
<p>A table contains entities. Unlike database tables, the entities within a single table can have differing sets of properties. For example, you can store customer entities and order entities within the same table. Tables are similar to rows within a spreadsheet application (such as Excel) in that each row can contain a different number of columns and the cells can vary their data type.</p>
<p><strong>Queues</strong></p>
<p>Windows Azure Queue storage is a service for storing large numbers of messages that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2012/04/windows-azure-basics-what-you-should-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Communication between UserControls</title>
		<link>http://samuelnmensah.com/2012/01/how-to-communication-between-usercontrols-2/</link>
		<comments>http://samuelnmensah.com/2012/01/how-to-communication-between-usercontrols-2/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 23:01:54 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=159</guid>
		<description><![CDATA[Problem : Allow one UserControl(DepartmentSelectorControl) to communicate /pass a value to another UserControl which will in turn &#160; using System; using System.Linq; using System.Web.UI.WebControls; public partial class Controls_DepartmentSelectorControl : System.Web.UI.UserControl { private string selecteddepartment = string.Empty; public string SelectedDepartment { get { return selecteddepartment; } set { selecteddepartment = value; selecteddepartment = uxDepartments.SelectedItem.Text; } } [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong> : Allow one UserControl(DepartmentSelectorControl) to communicate /pass a value to another UserControl which will in turn</p>
<p>&nbsp;</p>
<p><span style="color: #000000;"><strong><br />
</strong></span></p>
<pre class="brush:csharp">using System;
using System.Linq;
using System.Web.UI.WebControls;

public partial class Controls_DepartmentSelectorControl : System.Web.UI.UserControl
{

	private string selecteddepartment = string.Empty;
	public string SelectedDepartment
	{
		get { return selecteddepartment; }
		set
		{
			selecteddepartment = value;
			selecteddepartment = uxDepartments.SelectedItem.Text;
		}
	}

	//Create eventhandler to be consumed by the host page
	public event EventHandler SelectDepartment;

	protected void Page_Load(object sender, EventArgs e)
	{
		using (var context = new AdventureWorksEntities())
		{

			var departments = context.Departments.Select(p =&gt; new Department
			{
				DepartmentID = p.DepartmentID,
				GroupName = p.GroupName,
				Name = p.Name,
				ModifiedDate = p.ModifiedDate
			});
			foreach (var department in departments)
			{
				var dItem = new ListItem { Text = department.Name, Value = department.DepartmentID.ToString() };
				uxDepartments.Items.Add(dItem);
			}

		}

	}

	protected void uxDepartments_SelectedIndexChanged(object sender, EventArgs e)
	{
		//Set the member variable to what the user has selected
		selecteddepartment = uxDepartments.SelectedItem.Text;
		if(SelectDepartment != null)
		{
			//Event is raised and corresponding eventhandler is called to respond to the event
			SelectDepartment(this, new EventArgs());
		}

	}
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2012/01/how-to-communication-between-usercontrols-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieving Editable Regions in Kentico</title>
		<link>http://samuelnmensah.com/2012/01/retrieving-editable-regions-in-kentico/</link>
		<comments>http://samuelnmensah.com/2012/01/retrieving-editable-regions-in-kentico/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 22:45:06 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Kentico CMS]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=155</guid>
		<description><![CDATA[Problem : Retrieve contents of editable regions in Kentico Kentico CMS allows you to use a custom control called CMSEditableRegion. There are times when you might need to check the contents of this region and perform some checks to implement business rules. Solution : Check for the EditableRegion property on the Current document Each document [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong> : Retrieve contents of editable regions in Kentico</p>
<p>Kentico CMS allows you to use a custom control called <strong>CMSEditableRegion</strong>. There are times when you might need to check the contents of this region and perform some checks to implement business rules.</p>
<p><strong>Solution</strong> : Check for the EditableRegion property on the Current document</p>
<p>Each document has a property called EditableRegions which is basically a key value pair. If an editable region is on the page then the name (in lower case) is stored as a key in Editable Regions.</p>
<pre class="brush:csharp">if (CMSContext.CurrentDocument.DocumentContent.EditableRegions.ContainsKey("uxpagetitle"))
{
         content = CMSContext.CurrentDocument.DocumentContent.EditableRegions["uxpagetitle"].ToString();
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2012/01/retrieving-editable-regions-in-kentico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to generate an iCalendar file</title>
		<link>http://samuelnmensah.com/2012/01/how-to-generate-an-icalendar-file/</link>
		<comments>http://samuelnmensah.com/2012/01/how-to-generate-an-icalendar-file/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 22:14:59 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=149</guid>
		<description><![CDATA[Problem : Generate a iCalendar file which will trigger a calendar application (eg. outlook) to open with an updated event. The iCalendar file is a fairly common feature which most developers add to enable  users to add events to their personalized calendars via a custom calendar application Solution : Create a web handler which will [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong> : Generate a iCalendar file which will trigger a calendar application (eg. outlook) to open with an updated event.</p>
<p>The iCalendar file is a fairly common feature which most developers add to enable  users to add events to their personalized calendars via a custom calendar application</p>
<p><img src="data:image/png;base64,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" alt="save image" /></p>
<p><strong>Solution</strong> : Create a web handler which will create a plain text file with the &#8216;ics&#8217; extension.</p>
<pre class="brush:csharp">using System;
using System.Web;
namespace MyNamespace
{
 public class iCalendar: IHttpHandler
 {

  public bool IsReusable
  {
   get
   {
    return true;
   }
  }

  string DateFormat
  {
    get
    {
      return "yyyyMMddTHHmmssZ"; // 20060215T092000Z
    }
  }

  public void ProcessRequest(HttpContext context)
  {
   DateTime startDate = DateTime.Now.AddDays(5);
   DateTime endDate = startDate.AddMinutes(35);
   string organizer = "foo@bar.com";
   string location = "My House";
   string summary = "My Event";
   string description = "Please come to\\nMy House";

   context.Response.ContentType="text/calendar";
   context.Response.AddHeader("Content-disposition", "attachment; filename=appointment.ics");

   context.Response.Write("BEGIN:VCALENDAR");
   context.Response.Write("\nVERSION:2.0");
   context.Response.Write("\nMETHOD:PUBLISH");
   context.Response.Write("\nBEGIN:VEVENT");
   context.Response.Write("\nORGANIZER:MAILTO:" + organizer);
   context.Response.Write("\nDTSTART:" + startDate.ToUniversalTime().ToString(DateFormat));
   context.Response.Write("\nDTEND:" + endDate.ToUniversalTime().ToString(DateFormat));
   context.Response.Write("\nLOCATION:" + location);
   context.Response.Write("\nUID:" + DateTime.Now.ToUniversalTime().ToString(DateFormat) + "@mysite.com");
   context.Response.Write("\nDTSTAMP:" + DateTime.Now.ToUniversalTime().ToString(DateFormat));
   context.Response.Write("\nSUMMARY:" + summary);
   context.Response.Write("\nDESCRIPTION:" + description);
   context.Response.Write("\nPRIORITY:5");
   context.Response.Write("\nCLASS:PUBLIC");
   context.Response.Write("\nEND:VEVENT");
   context.Response.Write("\nEND:VCALENDAR");
   context.Response.End();
  }
 }
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2012/01/how-to-generate-an-icalendar-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feature Stapling in SharePoint 2010 Part II</title>
		<link>http://samuelnmensah.com/2011/09/feature-stapling-in-sharepoint-2010-part-ii/</link>
		<comments>http://samuelnmensah.com/2011/09/feature-stapling-in-sharepoint-2010-part-ii/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 20:44:45 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=134</guid>
		<description><![CDATA[&#160; At this point Feature 1 is complete and we are ready to deploy to our sharepoint environment. You should have a solution explorer similar to this: &#160; &#160; After you deploy, you can verify that everything worked by doing the following. Navigate to Site Actions -&#62; Site Settings -&#62; Site Collection Administration -&#62; Site [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>At this point Feature 1 is complete and we are ready to deploy to our sharepoint environment. You should have a solution explorer similar to this:</p>
<p>&nbsp;</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/solutionview2.jpg"><img title="solutionview2" src="http://samuelnmensah.com/wp-content/uploads/2011/08/solutionview2.jpg" alt="" width="283" height="228" /></a></p>
<p>&nbsp;</p>
<p>After you deploy, you can verify that everything worked by doing the following. Navigate to Site Actions -&gt; Site Settings -&gt; Site Collection Administration -&gt; Site Collection Features. Search for the feature you deployed. You should find that it’s activated and working as expected.</p>
<p>The second thing we need to check is whether our master page was deployed or not. Navigate to  <a href="http://[rootsite]/_catalogs/master/Forms/AllItems.aspx">http://[RootSite]/_catalogs/master/Forms/AllItems.aspx</a> in your browser. You should find that Test.master (or whatever the name you gave) is now visible and approved in our master page list.</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/featureadmin.jpg"><img class="alignnone size-medium wp-image-78" title="featureadmin" src="http://samuelnmensah.com/wp-content/uploads/2011/08/featureadmin-300x69.jpg" alt="" width="300" height="69" /></a></p>
<p>At this point we have feature 1 fully working. We won’t stop here because we want this master page to be applied whenever a new site collection is provisioned. So we have to create our Stapler (Feature2) which will associate Feature1 with the site definition of My sites.</p>
<p>&nbsp;</p>
<p><span style="color: #008000;">Step 3: Create Stapler Feature to associate Feature1 with a site Definition</span></p>
<p>Follows the same steps above to create another Feature called Feature 2. The scope of this feature should be set to Farm level.</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/feature21.jpg"><img class="alignnone size-full wp-image-128" title="feature2" src="http://samuelnmensah.com/wp-content/uploads/2011/08/feature21.jpg" alt="" width="258" height="152" /></a></p>
<p>Next add an empty element item called Elements.</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/Elements1.jpg"><img class="alignnone size-medium wp-image-129" title="Elements" src="http://samuelnmensah.com/wp-content/uploads/2011/08/Elements1-300x113.jpg" alt="" width="300" height="113" /></a></p>
<p>Your Solution explorer should like this now</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/solutionview3.jpg"><img class="alignnone size-full wp-image-88" title="solutionview3" src="http://samuelnmensah.com/wp-content/uploads/2011/08/solutionview3.jpg" alt="" width="218" height="275" /></a></p>
<p>The next task is the most important since this involves associating feature with a site definition.</p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/FeatureGUID.jpg"><img class="alignnone size-medium wp-image-89" title="FeatureGUID" src="http://samuelnmensah.com/wp-content/uploads/2011/08/FeatureGUID-300x52.jpg" alt="" width="300" height="52" /></a></p>
<p>We will need the GUID from Feature1 . You can find this in the manifest.</p>
<pre class="brush:xml">&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;Elements xmlns="http://schemas.microsoft.com/sharepoint/"&gt;
&lt;FeatureSiteTemplateAssociation TemplateName="SPSMSITEHOST#0" Id="493a82e4-f05b-4244-91df-c99ba69db085"&gt;&lt;/FeatureSiteTemplateAssociation&gt;
&lt;FeatureSiteTemplateAssociation TemplateName="SPSPERS#0" Id="493a82e4-f05b-4244-91df-c99ba69db085"&gt;&lt;/FeatureSiteTemplateAssociation&gt;

&lt;/Elements&gt;</pre>
<p>Two lines of code were added to make the association between feature and site defintion. The site definition id is encapsulated in the templatename [SPSMITEHOST#0 &amp; SPSPERS#0].</p>
<p>We&#8217;ve now successfully created our feature and stapler. Deploy this to your SharePoint instance to see this in action.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2011/09/feature-stapling-in-sharepoint-2010-part-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Retrieving the current user in SharePoint 2010 object model</title>
		<link>http://samuelnmensah.com/2011/09/how-to-get-the-current-user-in-sharepoint-2010/</link>
		<comments>http://samuelnmensah.com/2011/09/how-to-get-the-current-user-in-sharepoint-2010/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 18:35:56 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=117</guid>
		<description><![CDATA[This is a really simple code snippet to obtain the current user using the SharePoint object model. using (SPWeb spweb = SPContext.Current.Web) { SPUser oUser = spweb.CurrentUser; string Username = oUser.LoginName; } SPUser represents a user in SharePoint services. A new object (oUser) is created from the spweb property, currentUser. We can now access various [...]]]></description>
			<content:encoded><![CDATA[<p>This is a really simple code snippet to obtain the current user using the SharePoint object model.</p>
<pre class="brush:csharp">using (SPWeb spweb = SPContext.Current.Web) {
SPUser oUser = spweb.CurrentUser;
string Username = oUser.LoginName;
}</pre>
<p>SPUser represents a user in SharePoint services. A new object (oUser) is created from the spweb property, currentUser. We can now access various other properties like LoginName, Name etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2011/09/how-to-get-the-current-user-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free SharePoint Development Tools</title>
		<link>http://samuelnmensah.com/2011/09/free-sharepoint-development-tools/</link>
		<comments>http://samuelnmensah.com/2011/09/free-sharepoint-development-tools/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 17:56:29 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=111</guid>
		<description><![CDATA[Four free SharePoint development tools you should consider using are: CAML Builder from U2U (http://www.u2u.be/Res/Tools/CamlQueryBuilder.aspx): Build and test your CAML queries and paste into your code. CKS (Community Kit for SharePoint, Tools Edition) (http://cksdev.codeplex.com/ ): Makes the SharePoint development cycle tolerable (almost). Version 2 was released May 2011. ULS Viewer (http://archive.msdn.microsoft.com/ULSViewer ) In my opinion, [...]]]></description>
			<content:encoded><![CDATA[<p>Four free SharePoint development tools you should consider using are:</p>
<ul>
<li><strong>CAML Builder from U2U </strong>(<a href="http://www.u2u.be/Res/Tools/CamlQueryBuilder.aspx">http://www.u2u.be/Res/Tools/CamlQueryBuilder.aspx</a>): Build and test your CAML queries and paste into your code.</li>
<li><strong>CKS (Community Kit for SharePoint, Tools Edition)</strong> (<a href="http://cksdev.codeplex.com/">http://cksdev.codeplex.com/</a> ): Makes the SharePoint development cycle tolerable (almost). Version 2 was released May 2011.</li>
<li><strong>ULS Viewer </strong>(<a href="http://archive.msdn.microsoft.com/ULSViewer">http://archive.msdn.microsoft.com/ULSViewer</a> ) In my opinion, the best.</li>
<li><strong>SharePoint Manager</strong> (<a href="http://spm.codeplex.com/">http://spm.codeplex.com/</a>). Invaluable for browsing a SharePoint farm, viewing and changing parameters and option.</li>
<li><strong>SharePoint Diagnostic Studio</strong> (<a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=20022" target="_blank">http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=20022</a>) is a great tool to help administer and manage SharePoint.</li>
</ul>
<div><span style="font-size: small;"><span class="Apple-style-span" style="line-height: 24px;">source: <a href="http://nickgrattan.wordpress.com/2011/06/30/favorite-sharepoint-development-tools/#comments" target="_blank">nickGrattan</a></span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2011/09/free-sharepoint-development-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Linq to SharePoint &#8211; SPLinq</title>
		<link>http://samuelnmensah.com/2011/08/using-linq-to-sharepoint-splinq/</link>
		<comments>http://samuelnmensah.com/2011/08/using-linq-to-sharepoint-splinq/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 18:38:45 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=91</guid>
		<description><![CDATA[SPlinq allows you to write strongly typed queries against lists. Here are some key points to note: SharePoint 2010 exposes list data through a REST service that you can consume in your projects. The WCF data service SharePoint exposes is ListData.svc. eg http://sp2010dev/_vti_bin/listdata.svc  You will need the ADO.NET client runtime installed on your machine In [...]]]></description>
			<content:encoded><![CDATA[<p>SPlinq allows you to write strongly typed queries against lists. Here are some key points to note:</p>
<ul>
<li>SharePoint 2010 exposes list data through a REST service that you can consume in your projects.</li>
<li>The WCF data service SharePoint exposes is ListData.svc. eg <a href="#">http://sp2010dev/_vti_bin/listdata.svc </a></li>
<li>You will need the ADO.NET client runtime installed on your machine</li>
<li>In order to use the objects returned by listdata.svc service, we&#8217;ll need to generate entity classes for the list of objects returned by that service. You can do this by using SPMetal or adding a service reference to your project.</li>
</ul>
<div><span style="font-size: small;"><span class="Apple-style-span" style="line-height: 24px;"><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/sp2010dev-_vti_bin-listdata.svc_2.png"><img class="size-medium wp-image-96 aligncenter" title="sp2010dev _vti_bin listdata.svc" src="http://samuelnmensah.com/wp-content/uploads/2011/08/sp2010dev-_vti_bin-listdata.svc_2-300x148.png" alt="" width="300" height="148" /></a></span></span></div>
<div><span style="font-size: small;"><span class="Apple-style-span" style="line-height: 24px;">The image above shows listdata.svc displayed in a browser with a view of all the lists available in that site collection.</span></span></div>
<p>After adding a service reference , include the ff references in your project:</p>
<pre class="brush:csharp">using System.Net;
using Microsoft.SharePoint.Linq</pre>
<p>You&#8217;re now ready to write a simple program. We want to create a webpart which will display a list of events only created by a particular user.</p>
<p>In the page_Load of our visual webpart we create a new data context by specifiying a URI and credentials by which we will be connecting to the list data.</p>
<pre class="brush:applescript">protected void Page_Load(object sender, EventArgs e)
		{

			var builder = new StringBuilder();
			var context = new POPDataContext(new Uri("http://sp2010dev/_vti_bin/listdata.svc"))
							  {
								  Credentials = CredentialCache.DefaultCredentials

							  };</pre>
<p>Next we retrieve the username of the current user and strip away some default characters in the string. The query below then simple selects all events which were created by that user. We loop through all the results and assign them to a string which we display in our label.</p>
<pre class="brush:csharp">SPUser currentUser = SPContext.Current.Web.CurrentUser;
			String activeDirectoryUsername = currentUser.LoginName;

			activeDirectoryUsername = activeDirectoryUsername.Substring(3);</pre>
<pre class="brush:csharp">var users =context.PopEvents.Where(b =&gt; b.CreatedBy.UserName.Equals(activeDirectoryUsername))
                                                .Select(b =&gt; new { b.Title,
                                                                   Username = b. CreatedBy.UserName
                                                                  });</pre>
<pre class="brush:csharp">foreach (var userInformationListItem in users)
			{
				builder.AppendFormat("{0} posted by {1}", userInformationListItem.Title,
									 userInformationListItem.Username);
				builder.AppendFormat("&lt;br /&gt;");
			}

			uxVacationRequests.Text = builder.ToString();

		}</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong> Output:</strong></p>
<p><a href="http://samuelnmensah.com/wp-content/uploads/2011/08/Home-POP.png"><img class="alignnone size-full wp-image-108" title="Home    POP" src="http://samuelnmensah.com/wp-content/uploads/2011/08/Home-POP.png" alt="" width="255" height="62" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2011/08/using-linq-to-sharepoint-splinq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint: Cannot convert type ‘Microsoft.SharePoint.WebControls.ScriptLink’ to ‘System.Web.UI.IAttributeAccessor’</title>
		<link>http://samuelnmensah.com/2011/08/sharepoint-cannot-convert-type-%e2%80%98microsoft-sharepoint-webcontrols-scriptlink%e2%80%99-to-%e2%80%98system-web-ui-iattributeaccessor%e2%80%99/</link>
		<comments>http://samuelnmensah.com/2011/08/sharepoint-cannot-convert-type-%e2%80%98microsoft-sharepoint-webcontrols-scriptlink%e2%80%99-to-%e2%80%98system-web-ui-iattributeaccessor%e2%80%99/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 18:03:12 +0000</pubDate>
		<dc:creator>Samuel</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://samuelnmensah.com/?p=80</guid>
		<description><![CDATA[I recently ran into this error which working on a custom page. Sharepoint: Cannot convert type ‘Microsoft.SharePoint.WebControls.ScriptLink’ to ‘System.Web.UI.IAttributeAccessor’ Whenever you copy a master page from one site to another in SharePoint designer, it converts certain tags to script. The solution is to cut and paste your code into a new masterpage file. Source: http://www.hexanes.com/?p=448]]></description>
			<content:encoded><![CDATA[<p>I recently ran into this error which working on a custom page.</p>
<pre class="brush:plain">Sharepoint: Cannot convert type ‘Microsoft.SharePoint.WebControls.ScriptLink’
to ‘System.Web.UI.IAttributeAccessor’</pre>
<p>Whenever you copy a master page from one site to another in SharePoint designer, it converts certain tags to script. The solution is to cut and paste your code into a new masterpage file.</p>
<h6><em>Source: http://www.hexanes.com/?p=448</em></h6>
]]></content:encoded>
			<wfw:commentRss>http://samuelnmensah.com/2011/08/sharepoint-cannot-convert-type-%e2%80%98microsoft-sharepoint-webcontrols-scriptlink%e2%80%99-to-%e2%80%98system-web-ui-iattributeaccessor%e2%80%99/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

