﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Database Deployment Toolkit » Issues  » Filtering Date in BO</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Sun, 17 May 2026 10:05:14 GMT</lastBuildDate><ttl>20</ttl><item><title>Filtering Date in BO</title><link>http://forum.strataframe.net/FindPost33510.aspx</link><description>&lt;strong&gt;I have three properties in my customers BO. The first one&amp;nbsp;cust_DateofBirth with a data type of&amp;nbsp;DateTime and it is mapped to database datetime field. Other two are custom field property and they are defined in the BO as follows&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;lt;ComponentModel.Browsable(False), _&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp;MicroFour.StrataFrame.UI.Windows.Forms.BusinessFieldDisplayInEditor(), _&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp;ComponentModel.Description("DOBGMT"), _&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp;ComponentModel.DesignerSerializationVisibility(ComponentModel.DesignerSerializationVisibility.Hidden)&amp;gt; _&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; Public Property DOBGMT() As Date&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Get&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;Return DatePart(DateInterval.Year, Me.cust_DateofBirth).ToString &amp;amp; "-" &amp;amp; DatePart(DateInterval.Month, Me.cust_DateofBirth).ToString &amp;amp; "-" &amp;amp; DatePart(DateInterval.Day, Me.cust_DateofBirth).ToString&lt;/font&gt;&lt;div&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Get&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Set(value As Date)&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Me.cust_DateofBirth = value&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Set&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp;End Property&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;lt;ComponentModel.Browsable(False), _&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp;MicroFour.StrataFrame.UI.Windows.Forms.BusinessFieldDisplayInEditor(), _&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp;ComponentModel.Description("DOByyyyMMdd"), _&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp;ComponentModel.DesignerSerializationVisibility(ComponentModel.DesignerSerializationVisibility.Hidden)&amp;gt; _&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; Public ReadOnly Property DOByyyyMMdd() As String&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Get&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Return cust_DateofBirth.ToString("yyyy-MM-dd")&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Get&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; End Property&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp;Protected Overrides Function GetCustomBindablePropertyDescriptors() As MicroFour.StrataFrame.Business.FieldPropertyDescriptor()&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; '-- Establish Locals&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim r As New List(Of FieldPropertyDescriptor)&lt;br/&gt;&lt;br/&gt;&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; '-- Include all of the base descriptors&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Try&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; r.AddRange(MyBase.GetCustomBindablePropertyDescriptors())&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Catch ex As Exception&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Try&lt;br/&gt;&lt;br/&gt;&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; '-- Add the custom descriptors &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; r.Add(New ReflectionPropertyDescriptor("DOBGMT", GetType(CustomersBO))) &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; r.Add(New ReflectionPropertyDescriptor("DOByyyyMMdd", GetType(CustomersBO)))&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; '-- Return results&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Return r.ToArray()&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp;End Function&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp;Private Sub CustomersBO_CurrentDataTableInitialized() Handles Me.CurrentDataTableInitialized&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If Me.CurrentDataTable.Columns.Contains("DOBGMT") = False Then&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Me.CurrentDataTable.Columns.Add("DOBGMT", GetType(Date))&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If Me.CurrentDataTable.Columns.Contains("DOByyyyMMdd") = False Then&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Me.CurrentDataTable.Columns.Add("DOByyyyMMdd", System.Type.GetType("System.String"))&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/font&gt;&lt;div&gt;&lt;font color="#ff0000"&gt;&amp;nbsp;End Sub&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp;Private Sub CustomersBO_CurrentDataTableRefilled() Handles Me.CurrentDataTableRefilled&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If Me.CurrentDataTable.Columns.Contains("DOBGMT") = False Then&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Me.CurrentDataTable.Columns.Add("DOBGMT", System.Type.GetType("System.Date"))&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Me.CurrentDataTable.Columns.Add("DOBGMT", GetType(Date))&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If Me.CurrentDataTable.Columns.Contains("DOByyyyMMdd") = False Then&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Me.CurrentDataTable.Columns.Add("DOByyyyMMdd", System.Type.GetType("System.String"))&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/font&gt;&lt;div&gt;&lt;font color="#000088"&gt;&amp;nbsp; End Sub&lt;/font&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;strong&gt;Now when I tried to filter the BO using all three column option I am not getting the result (I have one record in SQL database)&lt;/strong&gt;&lt;div&gt;&lt;strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;div&gt;&lt;div&gt;CustomersBO.Filter &amp;nbsp;= "cust_FirstName = 'John' AND cust_LastName = 'Smith' AND DOBGMT = '1962-09-19'"&lt;div&gt;CustomersBO.Filter &amp;nbsp;= "cust_FirstName = 'John' AND cust_LastName = 'Smith' AND DOByyyyMMdd = '1962-09-19'"&lt;div&gt;CustomersBO.Filter &amp;nbsp;= "cust_FirstName = 'John' AND cust_LastName = 'Smith' AND cust_DateofBirth = '1962-09-19'"&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;strong&gt;I tried to use CurrentDataTable with select statement and no result as well&lt;/strong&gt;&lt;div&gt;&lt;div&gt;?CustomersBO.CurrentDataTable.[Select]("cust_FirstName = 'John' AND cust_LastName = 'Smith' &amp;nbsp;AND DOBGMT = '1962-09-19'").Length&lt;div&gt;0&lt;div&gt;?CustomersBO.CurrentDataTable.[Select]("cust_FirstName = 'John' AND cust_LastName = 'Smith' &amp;nbsp;AND DOByyyyMMdd = '1962-09-19'").Length&lt;div&gt;0&lt;div&gt;?CustomersBO.CurrentDataTable.[Select]("cust_FirstName = 'John' AND cust_LastName = 'Smith' &amp;nbsp;AND cust_DateofBirth = '1962-09-19'").Length&lt;div&gt;0&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;strong&gt;But when I just use first and last names it is fine in both occasion&lt;/strong&gt;&lt;div&gt;CustomersBO.Filter &amp;nbsp;= "cust_FirstName = 'John' AND cust_LastName = 'Smith'"&lt;div&gt;?CustomersBO.CurrentDataTable.[Select]("cust_FirstName = 'John' AND cust_LastName = 'Smith'").Length&lt;div&gt;1&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;strong&gt;Any help is appreciated.&lt;/strong&gt;</description><pubDate>Sat, 05 Aug 2017 05:44:11 GMT</pubDate><dc:creator>Danny Doobay</dc:creator></item><item><title>RE: Filtering Date in BO</title><link>http://forum.strataframe.net/FindPost33514.aspx</link><description>by the way this is related to SF version 1.7.7.1</description><pubDate>Sat, 05 Aug 2017 05:44:11 GMT</pubDate><dc:creator>Danny Doobay</dc:creator></item><item><title>RE: Filtering Date in BO</title><link>http://forum.strataframe.net/FindPost33513.aspx</link><description>Thanks for the reply.&lt;br/&gt;&lt;br/&gt;&lt;div&gt;I have tested out something similar and it worked fine. But the issue arise when using CustomersBO.&lt;br/&gt;&lt;br/&gt;&lt;div&gt;My question is why&amp;nbsp;&lt;span style="background-color: rgb(249, 250, 252); font-family: Verdana, Tahoma, Arial;"&gt;&lt;strong&gt;&lt;font size="2"&gt;CustomersBO.Filter &amp;nbsp;= "cust_FirstName = 'John' AND cust_LastName = 'Smith' AND cust_DateofBirth = '1962-09-19'"&amp;nbsp;&lt;/font&gt;&lt;/strong&gt;&lt;/span&gt;&lt;div&gt;&lt;span style="background-color: rgb(249, 250, 252); font-family: Verdana, Tahoma, Arial; font-size: 13.3333px;"&gt;&lt;strong&gt;or&lt;/strong&gt;&lt;/span&gt;&lt;div&gt;&lt;font color="#ff0000" face="Consolas, Courier, monospace" size="3"&gt;&lt;strong&gt;Dim foundRows As DataRow() = CustomersBO.CurrentDataTable.[Select]("cust_FirstName = 'John' AND cust_LastName = 'Smith' &amp;nbsp;AND cust_DateofBirth = '1962-09-19'&lt;/strong&gt;&lt;/font&gt;&lt;div&gt;&lt;span style="background-color: rgb(249, 250, 252); font-family: Verdana, Tahoma, Arial; font-size: 13.3333px;"&gt;is not working ?&lt;/span&gt;</description><pubDate>Sat, 05 Aug 2017 05:13:08 GMT</pubDate><dc:creator>Danny Doobay</dc:creator></item><item><title>RE: Filtering Date in BO</title><link>http://forum.strataframe.net/FindPost33512.aspx</link><description>Here is the project. &amp;nbsp;Thought this would be easier.</description><pubDate>Fri, 04 Aug 2017 09:03:38 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Filtering Date in BO</title><link>http://forum.strataframe.net/FindPost33511.aspx</link><description>You can go about this a number of different ways. &amp;nbsp;First, you could use a view and filter out the record. &amp;nbsp;Since there is a data row within the collection, you can use a filter to filter out the view. &amp;nbsp;But it looks like you are wanting to select the contents. &amp;nbsp;So if I were you, use LINQ in this case. &amp;nbsp;Here is an example I wrote and tested for you.&lt;br/&gt;&lt;br/&gt;Just dump the below code into a Console Application and it should work for you.&lt;br/&gt;&lt;br/&gt;&lt;div&gt;Now keep in mind, in SF V2 all entities (business objects) are typed entities and don't use ADO.NET, but that doesn't mean that you can't use this type of logic on ADO.NET data tables. &amp;nbsp;The different is that you first have to get the ADO.NET into a typed format (reference the query below). &amp;nbsp;Once in that state, you can Select from it, filter it out with a Where, or whatever using lambda expressions and LINQ. &amp;nbsp;But this is a faster and better method that the weak typed logic of the ADO.NET select. &amp;nbsp;Let me know if this gets you going.&lt;div&gt;&lt;br/&gt;&lt;div&gt;&lt;span&gt;[codesnippet]&lt;/span&gt;private static DataTable _Data;&lt;span&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;		&lt;/span&gt;static void Main(string[] args)&lt;div&gt;&lt;span style="white-space:pre"&gt;		&lt;/span&gt;{&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;CreateData();&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;//-- Create a query straight from the data table and implement your WHERE logic&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;var query = from _Data in _Data.AsEnumerable()&lt;div&gt;&lt;span style="white-space:pre"&gt;						&lt;/span&gt;where _Data.Field&amp;lt;string&amp;gt;("Last").Equals("smith", StringComparison.OrdinalIgnoreCase)&lt;div&gt;&lt;span style="white-space:pre"&gt;						&lt;/span&gt;select new&lt;div&gt;&lt;span style="white-space:pre"&gt;						&lt;/span&gt;{&lt;div&gt;&lt;span style="white-space:pre"&gt;							&lt;/span&gt;First = _Data.Field&amp;lt;string&amp;gt;("First"),&lt;div&gt;&lt;span style="white-space:pre"&gt;							&lt;/span&gt;Last = _Data.Field&amp;lt;string&amp;gt;("Last"),&lt;div&gt;&lt;span style="white-space:pre"&gt;							&lt;/span&gt;Dob = _Data.Field&amp;lt;DateTime&amp;gt;("Dob")&lt;div&gt;&lt;span style="white-space:pre"&gt;						&lt;/span&gt;};&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;//-- Now you can enumerate the query&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;foreach(var i in query)&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;{&lt;div&gt;&lt;span style="white-space:pre"&gt;				&lt;/span&gt;Console.WriteLine($"First: {i.First} Last: {i.Last} Date of Birth: {i.Dob.ToString("MM/dd/yyyy")}");&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;}&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;Console.WriteLine("");&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;Console.WriteLine("Now filter out using inline LINQ instead of the query");&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;Console.WriteLine("");&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;//-- You can also leave the WHERE out of the query itself and then use LINQ to filter out the list.&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;// &amp;nbsp; This is my preferred approach in a situation like this.&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;foreach(var i in query.Where(i =&amp;gt; i.Dob == new DateTime(1952,01,01)))&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;{&lt;div&gt;&lt;span style="white-space:pre"&gt;				&lt;/span&gt;Console.WriteLine($"First: {i.First} Last: {i.Last} Date of Birth: {i.Dob.ToString("MM/dd/yyyy")}");&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;}&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;Console.ReadKey();&lt;div&gt;&lt;span style="white-space:pre"&gt;		&lt;/span&gt;}&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;		&lt;/span&gt;private static void CreateData()&lt;div&gt;&lt;span style="white-space:pre"&gt;		&lt;/span&gt;{&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;//-- Create a data table for testing&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data = new DataTable("Testing");&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Columns.Add("First", typeof(string));&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Columns.Add("Last", typeof(string));&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Columns.Add("Dob", typeof(DateTime));&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;//-- Create some records&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;var row = _Data.NewRow();&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["First"] = "John";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Last"] = "Smith";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Dob"] = new DateTime(1952,01,01);&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Rows.Add(row);&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row = _Data.NewRow();&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["First"] = "Neta";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Last"] = "Aberdeen";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Dob"] = new DateTime(1948, 10, 12);&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Rows.Add(row);&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row = _Data.NewRow();&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["First"] = "Able";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Last"] = "Smith";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Dob"] = new DateTime(1968, 06, 05);&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Rows.Add(row);&lt;br/&gt;&lt;br/&gt;&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row = _Data.NewRow();&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["First"] = "Jed";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Last"] = "Lazbuddie";&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;row["Dob"] = new DateTime(1970, 12, 09);&lt;div&gt;&lt;span style="white-space:pre"&gt;			&lt;/span&gt;_Data.Rows.Add(row);&lt;br/&gt;&lt;span style="white-space: pre;"&gt;		&lt;/span&gt;}&lt;span&gt;&amp;nbsp;[/codesnippet]&lt;/span&gt;&lt;/span&gt;</description><pubDate>Fri, 04 Aug 2017 08:57:22 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>