# Sunday, September 27, 2009

I first learned about Continuous Integration Servers about a year ago when I read a magazine article on the topic.  After reading the article, I decided that there was no way I was willing to continue with manual production builds anymore.  So I started to put together a CI Server.  In doing so, I was pleasantly surprised to see that almost everything needed to complete the new CI Server was readily available with a quick internet search.  However, there was one piece of the puzzle that was missing.  I was unable to find a resource that could produce a Visual FoxPro build for Cruise Control.Net.  Needless to say, I wasn’t about to let this minor setback deter me from my goal having a CI Server.  After reviewing my options, I decided to create a custom MSBuild Task to build my Visual FoxPro Applications.


Creating the VFP MSBuild Task

I started off by creating a C# Class Library Project named VfpBuildTask.  Then I added references for Microsoft.Build.Framework, Microsoft.Build.Utilities.v3.5, and Microsoft Visual FoxPro 9.0 Type Library.  With the basic setup completed, the project was ready for developing the custom MSBuild Task.

image image image

To create the custom MSBuild Task, I added a new class named VfpBuild.  The VfpBuild class inherits from the abstract class Microsoft.Build.Utilities.Task which includes an abstract method named Execute.  The Execute method will handle the building of Visual FoxPro Applications.  To start off with, I wanted to implement a C# version of the following VFP code:

oVfp = CREATEOBJECT("VisualFoxPro.Application")
oVfp.DoCmd("BUILD EXE <<MyApp>> FROM <<MyApp>>.pjx RECOMPILE")
oVfp.Quit()

Here is the C# code that I came up with for the VfpBuild class:

using System;
using System.IO;
using System.Threading;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
 
namespace VfpBuildTask {
    public class VfpBuild : Task {
        [Required]
        public ITaskItem[] Projects { get; set; }
 
        public string BuildType { get; set; }
 
        public override bool Execute() {
            VisualFoxpro.FoxApplicationClass vfp = null;
 
            try {
                // vfp = CREATEOBJECT("VisualFoxPro.Application")
                vfp = new VisualFoxpro.FoxApplicationClass();
 
                // loop through all the vfp projects 
                for (int index = 0, total = this.Projects.Length; index < total; index++) {
                    // get the project full path
                    string project = this.Projects[index].ItemSpec;
                    
                    // create the build command
                    string buildCommand = string.Format("build {0} '{1}' from '{2}' recompile",
                                                            (string.IsNullOrEmpty(this.BuildType) ? "exe" : this.BuildType),
                                                            Path.GetFileNameWithoutExtension(project),
                                                            project);
 
                    // execute the build command
                    vfp.DoCmd(buildCommand);
                }
            }
            catch (Exception ex) {
                this.Log.LogError(ex.Message);
            }
            finally {
                if (vfp != null) {
                    vfp.Quit();
                }
            }
 
            return !this.Log.HasLoggedErrors;
        }
    }
}

At this point, I’m ready to test this class to see if it will actually create the build.  Now I needed to create and run a MS Build Project.  I created a very simple MS Build Project with the file name Build1.proj.

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <Import Project="C:\VfpBuildTask\MSBuild\Resources\VfpBuildTask.Targets" />
 
    <Target Name="Build">
        <VfpBuild Projects="C:\VfpBuildTask\Apps\ExeProgram1.pjx" />
    </Target>
</Project>

I ran this project from the command prompt using the following:

image

The VFP MSBuild Task built the application as expected.  Great!  But it also had a minor side effect which would prevent me from being able to add this to the CI Server Build Process.  It seems that something was preventing Visual FoxPro from exiting… resulting in a very common dialog:

image

After looking into this issue, I found that the Task Pane was causing this dialog.  I added code to close the Task Pane Window before calling the Quit method on the VFP instance.  To do this I just added a Thread.Sleep command to give the window some time to load and then I executed the VFP command “Clear All".

Here is the modified code:

using System;
using System.IO;
using System.Threading;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
 
namespace VfpBuildTask {
    public class VfpBuild : Task {
        [Required]
        public ITaskItem[] Projects { get; set; }
 
        public string BuildType { get; set; }
 
        public override bool Execute() {
            VisualFoxpro.FoxApplicationClass vfp = null;
 
            try {
                // vfp = CREATEOBJECT("VisualFoxPro.Application")
                vfp = new VisualFoxpro.FoxApplicationClass();
 
                // wait for the task pane window open
                Thread.Sleep(2000);
 
                // close the task pane window
                vfp.DoCmd("CLEAR ALL");
 
                // loop through all the vfp projects 
                for (int index = 0, total = this.Projects.Length; index < total; index++) {
                    // get the project full path
                    string project = this.Projects[index].ItemSpec;
                    
                    // create the build command
                    string buildCommand = string.Format("build {0} '{1}' from '{2}' recompile",
                                                            (string.IsNullOrEmpty(this.BuildType) ? "exe" : this.BuildType),
                                                            Path.GetFileNameWithoutExtension(project),
                                                            project);
 
                    // execute the build command
                    vfp.DoCmd(buildCommand);
                }
            }
            catch (Exception ex) {
                this.Log.LogError(ex.Message);
            }
            finally {
                if (vfp != null) {
                    vfp.Quit();
                }
            }
 
            return !this.Log.HasLoggedErrors;
        }
    }
}

At this point, I’m technically done.  I can modify the CI Server build process to include building my Visual FoxPro Applications.  But now that I have the basics done… I can’t help but think of a few enhancements that I would like to include.  Plus, I’m considering the fact that I have not handled a potential build time dialog which my hang up the CI Server.  The dialog I’m referring to is the “Locate File” dialog.

image


Enhancing the VFP MSBuild Task -  Fix “Locate File” dialog issue:

The first change that I would like to make is preventing the “Locate File” dialog.  I can only think of two scenarios that would result in this dialog.  The first scenario is that the project is referencing a file that does not exist in the file system.  The second scenario is where the source code has a NewObject command which references a file that does not exist in the project or the file system.  These two scenarios are similar but require two different solutions.  In the first scenario, I can manually query the project file to see if any files are missing from the file system.  The second scenario I cannot completely solve but I can get close.  I can do this by querying the project file to generate a search path.  Setting the search path should allow the build process to find a file that hasn’t been added to the solution.  This will, of course, only work if the missing file is in a file location that has been referenced by another file in the project.

So how do I pull this off…?  First I added a reference LinqToVfp.dll, IQtoolkit.dll, and IQToolkit.Data.dll.  Then I create a class name VfpProjectItem to model the VFP Project table.  I only selected the few fields that I needed.

 
namespace VfpBuildTask {
    public class VfpProjectItem {
        public string Name { get; set; }
        public string Type { get; set; }
    }
}

Next I created a new method ProjectSetup and modified the Execute method to call this method.

public bool ProjectSetup(string project) {
         string connectionString = string.Format("Provider=VFPOLEDB.1;Data Source={0};", project);
         bool hasError = false;
         string projectFileName = null;
         List<string> fileList = null;
 
         using (VfpQueryProvider provider = VfpQueryProvider.Create(connectionString, null)) {
             provider.Connection.Open();
             projectFileName = Path.GetFileName(project);
 
             // Get a list of files with their relative path
             fileList = (from item in provider.GetTable<VfpProjectItem>(projectFileName)
                         // exclude the header item
                         where item.Type != "H"
                         select item.Name).ToList();
 
             provider.Connection.Close();
         }
 
         string homeDir = Path.GetDirectoryName(project);
         this.Log.LogMessage("Default Directory:  " + homeDir);
         this.vfp.DoCmd(string.Format("cd [{0}]", homeDir));
 
         // change the relative paths to absolute paths
         for (int index = 0, total = fileList.Count; index < total; index++) {
             string tempDir = homeDir;
             string itemPath = fileList[index];
 
             while (itemPath.StartsWith(@"..\")) {
                 // go up a directory level
                 tempDir = Path.GetDirectoryName(tempDir);
                 // remove ..\
                 itemPath = itemPath.Substring(3);
             }
 
             fileList[index] = Path.Combine(tempDir, itemPath);
         }
 
         // create a FileInfo object for each file
         List<FileInfo> fileInfoList = fileList.Select(file => new FileInfo(file)).ToList();
 
         // log an error message for each file that does not exist
         fileInfoList.Where(fi => !fi.Exists).ToList().ForEach(fi => {
             this.Log.LogError(string.Format("Cannot Locate File:  {0}", fi.FullName));
             hasError = true;
         });
 
         if (!hasError) {
             string searchPath = string.Empty;
 
             // create the search path
             fileInfoList.Select(fi => fi.DirectoryName.ToUpper()).Distinct().ToList().ForEach(dir => {
                 searchPath += dir + ";";
             });
 
             if (!string.IsNullOrEmpty(searchPath)) {
                 this.Log.LogMessage("Search Path:  " + searchPath);
                 this.vfp.DoCmd(string.Format("SET PATH TO [{0}]", searchPath));
             }
         }
 
         if (!hasError && !string.IsNullOrEmpty(this.Debug) && !string.IsNullOrEmpty(this.VersionNumber)) {
             string command = string.Format("MODIFY PROJECT '{0}'", project);
             this.Log.LogMessage(command);
             this.vfp.DoCmd(command);
 
             #region Debug
 
             if (!string.IsNullOrEmpty(this.Debug)) {
                 bool value = false;
 
                 if (bool.TryParse(this.Debug, out value)) {
                     command = string.Format("_vfp.ActiveProject.Debug = {0}", value ? ".t." : ".f.");
                     this.Log.LogMessage(command);
                     this.vfp.DoCmd(command);
                 }
                 else {
                     this.Log.LogError("Debug property is invalid:  {0}", this.Debug);
                     hasError = true;
                 }
             }
 
             #endregion
 
             #region VersionNumber
 
             if (!string.IsNullOrEmpty(this.VersionNumber)) {
                 // make sure auto increment is set to false if a version number was specified
                 command = string.Format("_vfp.ActiveProject.AutoIncrement = .f.");
                 this.Log.LogMessage(command);
                 this.vfp.DoCmd(command);
 
                 command = string.Format("_vfp.ActiveProject.VersionNumber = '{0}'", this.VersionNumber);
                 this.Log.LogMessage(command);
                 this.vfp.DoCmd(command);
             }
 
             #endregion
         }
 
         return !hasError;
     }

With this method in place, the NewObject scenario should compile just fine.  The missing project file scenario will no longer display the “Locate File” dialog.  Instead, this error will be logged to the console as seen in red below.

image


Enhancing the VFP MSBuild Task – Other minor enhancments:

Added OutputDir property, Debug property, and VersonNumber property.

Example MSBuild Project using the VFP MSBuild Task:

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
        <MSBuildCommunityTasksPath>C:\VfpBuildTask\MSBuild\Resources</MSBuildCommunityTasksPath>
    </PropertyGroup>
 
    <Import Project="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.Targets"/>
    <Import Project="C:\VfpBuildTask\MSBuild\Resources\VfpBuildTask.Targets" />
    
    <Target Name="Build">
        <PropertyGroup>
            <GetVersionNumber>
                <![CDATA[
                    public static string ScriptMain() {
                        return DateTime.Now.ToString("yyyy.MMdd.hhmm");
                    }
                ]]>
            </GetVersionNumber>
        </PropertyGroup>
 
        <Script Language="C#" Code="$(GetVersionNumber)">
            <Output TaskParameter="ReturnValue" PropertyName="VersionNumber" />
</Script>
        
        <ItemGroup>
            <VfpExeProjects Include="C:\VfpBuildTask\Apps\ExeProgram*.pjx" />
        </ItemGroup>
 
        <!-- build multiple Win32 executable build -->
        <VfpBuild Projects="@(VfpExeProjects)"
                  OutputDir="C:\VfpBuildTask\Deploy"
                  Debug="False"
                  VersionNumber="$(VersionNumber)" />
 
        <!-- application build -->
        <VfpBuild Projects="C:\VfpBuildTask\Apps\AppProgram1.pjx"
                  OutputDir="C:\VfpBuildTask\Deploy"
                  BuildType="App"
                  Debug="False"
                  VersionNumber="$(VersionNumber)" />
 
        <!-- multi-threaded com server build -->
        <VfpBuild Projects="C:\VfpBuildTask\Apps\DllPorgram1.pjx"
                  OutputDir="C:\VfpBuildTask\Deploy"
                  BuildType="MTDLL"
                  Debug="False"
                  VersionNumber="$(VersionNumber)" />
    </Target>
</Project>
9/27/2009 6:36 PM Eastern Daylight Time  #    Disclaimer  |  Comments [1]  | 
 # Wednesday, September 09, 2009

For this example, I’ll modify the project created in LINQ to VFP – Example #2.  I will add a new page that will use the Details View control.  This new page will include the ability to insert a Product.

Page Setup:  Add a new page Example3 to the project:

  • Example3.aspx
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Example3.aspx.cs" Inherits="Example3" %>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <div>
                <div style="color:Red;">
                    <asp:Literal ID="ErrorMessage" runat="server" EnableViewState="false" />
                </div>
            
                <asp:DetailsView ID="ProductDetailsView"
                                 runat="server"
                                 DataSourceID="ProductDataSource" 
                                 DataKeyNames="ProductId" 
                                 AutoGenerateRows="False" 
                                 OnItemUpdated="ProductDetailsView_ItemUpdated"
                                 OnItemDeleted="ProductDetailsView_ItemDeleted"
                                 OnItemInserted="ProductDetailsView_ItemInserted">
                    <Fields>
                        <asp:BoundField DataField="ProductID" HeaderText="Product Id" ReadOnly="True" />
                        <asp:BoundField DataField="ProductName" 
                                        HeaderText="ProductName" 
                                        SortExpression="ProductName" />
                        <asp:TemplateField HeaderText="Supplier" SortExpression="Supplier.CompanyName">
                            <ItemTemplate>
                                <%# Eval("Supplier.CompanyName")%>
                            </ItemTemplate>
                            <EditItemTemplate>
                                <asp:DropDownList ID="DropDownList1"
                                                  DataSourceID="SupplierDataSource" 
                                                  DataValueField="SupplierId" 
                                                  DataTextField="CompanyName" 
                                                  SelectedValue='<%# Bind("SupplierId") %>' 
                                                  runat="server" />
                            </EditItemTemplate>
                        </asp:TemplateField>
                        <asp:TemplateField HeaderText="Category" SortExpression="Category.CategoryName">
                            <ItemTemplate>
                                <%# Eval("Category.CategoryName")%>
                            </ItemTemplate>
                            <EditItemTemplate>
                                <asp:DropDownList ID="DropDownList2" 
                                                  DataSourceID="CategoryDataSource" 
                                                  DataValueField="CategoryId" 
                                                  DataTextField="CategoryName" 
                                                  SelectedValue='<%# Bind("CategoryId") %>' 
                                                  runat="server" />
                            </EditItemTemplate>
                        </asp:TemplateField>
                        <asp:BoundField DataField="UnitPrice" 
                                        HeaderText="UnitPrice" />
                        <asp:BoundField DataField="UnitsInStock" 
                                        HeaderText="UnitsInStock" />
                        <asp:BoundField DataField="UnitsOnOrder" 
                                        HeaderText="UnitsOnOrder" />
                        <asp:CheckBoxField DataField="Discontinued" 
                                           HeaderText="Discontinued" />
                        <asp:CommandField ShowEditButton="True" />
                        <asp:CommandField ShowDeleteButton="True" />
                        <asp:CommandField ShowInsertButton="True" />
                    </Fields>
                </asp:DetailsView>
                <iqw:DataSource ID="ProductDataSource" 
                                runat="server" 
                                ContextTypeName="WebExample.Model.Northwind" 
                                TableName="Products" 
                                RetrieveGeneratedId="True"
                                EnableDelete="true"
                                EnableInsert="true"
                                EnableUpdate="true"
                                OnInserted="ProductDataSource_Inserted">
                </iqw:DataSource>    
                <iqw:DataSource ID="CategoryDataSource" 
                                runat="server" 
                                ContextTypeName="WebExample.Model.Northwind" 
                                TableName="Categories" />
                <iqw:DataSource ID="SupplierDataSource" 
                                runat="server" 
                                ContextTypeName="WebExample.Model.Northwind" 
                                TableName="Suppliers" />          
            </div>
        </form>
    </body>
    </html>
  • Example3.cs
    using System;
    using System.Web.UI.WebControls;
    using WebExample.Model;
     
    public partial class Example3 : System.Web.UI.Page {
        protected void Page_Load(object sender, EventArgs e) {
            if (!this.IsPostBack) {
                this.ProductDetailsView.ChangeMode(DetailsViewMode.Insert);
            }
        }
     
        protected void ProductDataSource_Inserted(object sender, LinqDataSourceStatusEventArgs e) {
            Product p = e.Result as Product;
            this.ProductDataSource.Where = "ProductId = " + p.ProductID;
        }
     
        protected void ProductDetailsView_ItemUpdated(object sender, DetailsViewUpdatedEventArgs e) {
            if (e.Exception != null) {
                this.ErrorMessage.Text = e.Exception.Message;
                e.ExceptionHandled = true;
                e.KeepInEditMode = true;
            }
        }
     
        protected void ProductDetailsView_ItemInserted(object sender, DetailsViewInsertedEventArgs e) {
            if (e.Exception != null) {
                this.ErrorMessage.Text = e.Exception.Message;
                e.ExceptionHandled = true;
     
            }
        }
     
        protected void ProductDetailsView_ItemDeleted(object sender, DetailsViewDeletedEventArgs e) {
            if (e.Exception != null) {
                this.ErrorMessage.Text = e.Exception.Message;
                e.ExceptionHandled = true;
            }
        }
    }

 

With the new page created, it is time to test the insert feature.  Start by adding new Product information and then click the Insert link.  At this point an exception has been thrown indicating that the “Field ProductId is read-only.”  Now what does that mean?  It means that I finally need to do a little explaining about how Mapping works in my examples.

Implicit Mapping:  Up until this point I’ve been able to use Implicit Mapping.  Implicit mapping allowed me to simple create data classes and let IQToolkit connect the classes to the FoxPro Tables. 

Here are a couple key points about Implicit Mapping:

  • The Primary Key field must end with “ID” (upper case required).
  • Can handle singular and plural naming issues.  Notice in the image below that the class name is singular and the table name is plural.
    image
           
  • Associations are determined by matching properties.
    image
  • Cannot determine if a Primary Key an auto generated value.


After my brief explanation of Implicit Mapping and with knowing about the Products table structure it should obvious why we cannot insert the new Product.  The Implicit Mapping is trying to insert a value into the auto generated primary key field – ProductId.  You can find the insert statement in the Output Window when in debug mode.

image

If you copy the insert statement and run it in VFP you will see that you get the same error.

image

So how do we fix this error…?  It is time to stop using Implicit Mapping and start using a more explicit type of mapping.  The IQToolkit includes two other type of mappings.  I will use Attribute Mapping to finish up this example.


Three changes are required to setup the Attribute mapping.

  1. The IEntityTable<T> properties of the Northwind class need to be set as virtual.
    image
  2. Add a new class (NorthwindAttributes.cs) that includes all the attributes.
    image
  3. Modify the Northwind class to include the NorthwindAttribute class as the second parameter to the base constructor.
    image

After making these changes you should see that the insert is working as expected.

9/9/2009 6:32 AM Eastern Daylight Time  #    Disclaimer  |  Comments [0]  | 
 # Monday, August 24, 2009

My first example was extremely limited in showing what could be accomplished using LINQ to VFP.  For this example, I would like to work though a LINQ to SQL example using LINQ to VFP as the data context.

Basic Setup:

  • Create a new Website.
  • Add references to IQToolkit.dll, LinqToVfp.dll, IQToolkitContrib.dll, and IQToolkitContrib.Web.dll
  • Add a Northwind connection string setting to the web.config
    <connectionStrings>
        <add name="northwind"          
             providerName="System.Data.OleDb"          
             connectionString="Provider=VFPOLEDB.1;Data Source=**Your Path**\Northwind.dbc;"/>
    </connectionStrings>
  • Add a page control reference in the web.config to use IQToolkitContrib.Web.DataSource
    <pages>
        <controls>
            <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add tagPrefix="iqw" namespace="IQToolkitContrib.Web" assembly="IQToolkitContrib.Web" />
        </controls>
    </pages>

Create Data Classes:

  • Add a new class:  Supplier.cs
    public class Supplier {
        public int SupplierID { get; set; }
        public string CompanyName { get; set; }
    }
  • Add a new Class: Category.cs
    public class Category {
        public int CategoryID { get; set; }
        public string CategoryName { get; set; }
    }
  • Add a new Class: Product.cs
    using System;
    using IQToolkitContrib;
     
    public class Product : IValidate {
        public int ProductID { get; set; }
        public string ProductName { get; set; }
        public int SupplierID { get; set; }
        public Supplier Supplier { get; set; }
        public int CategoryID { get; set; }
        public Category Category { get; set; }
        public string QuantityPerUnit { get; set; }
        public decimal UnitPrice { get; set; }
        public int UnitsInStock { get; set; }
        public int UnitsOnOrder { get; set; }
        public int ReOrderlevel { get; set; }
        public bool Discontinued { get; set; }
     
        public void Validate() {
            if (this.Discontinued && this.UnitsOnOrder > 0) {
                throw new ArgumentException("Reorder level can't be greater than 0 if Discontinued");
            }
        }
    }
  • Add a new Class: NorthwindPolicy.cs
    using System.Reflection;
    using LinqToVfp;
     
    internal class NorthwindQueryPolicy : VfpQueryPolicy {
        public override bool IsIncluded(MemberInfo member) {
            // this will ensure that the Product.Supplier and Product.Category properties will be populated
            switch (member.Name) {
                case "Supplier":
                case "Category":
                    return true;
     
                default:
                    return false;
            }
        }
    }
  • Add a new Class: Northwind.cs
    using System.Configuration;
    using IQToolkit;
    using IQToolkitContrib;
    using LinqToVfp;
     
    public class Northwind : AVfpDatabaseContainer {
        public Northwind()
            : base(ConfigurationManager.ConnectionStrings["northwind"].ConnectionString, null) {
     
            // update the provider with some loading options
            this.Provider = this.Provider.New(new NorthwindQueryPolicy());
     
            // this will make it so that all command will be logged to the Output window
            this.Provider.Log = new DebuggerWriter();
        }
     
        public IEntityTable<Product> Products {
            get { return this.Provider.GetTable<Product>("Products"); }
        }
     
        public IEntityTable<Supplier> Suppliers {
            get { return this.Provider.GetTable<Supplier>("Suppliers"); }
        }
     
        public IEntityTable<Category> Categories {
            get { return this.Provider.GetTable<Category>("Categories"); }
        }
    }

Page Setup:  I had the resulting Example2.aspx and Example2.cs after working though the LINQ to SQL example with the only change being the replacement of <asp:LinqDataSource with <iqw:DataSource.

  • Example2.aspx
    <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Example2.aspx.cs" Inherits="Example2" %>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <div>
                <div>
                    Pick Category:
                    <asp:DropDownList ID="CategoryList" 
                                      DataSourceID="CategoryDataSource" 
                                      DataTextField="CategoryName" 
                                      DataValueField="CategoryId" 
                                      AutoPostBack="true" 
                                      runat="server" />
                </div>
                <div style="color:Red;">
                    <asp:Literal ID="ErrorMessage" runat="server" EnableViewState="false" />
                </div>
     
                <asp:GridView ID="ProductGrid" 
                              runat="server" 
                              AllowPaging="True" 
                              AllowSorting="True" 
                              AutoGenerateColumns="False" 
                              DataSourceID="ProductDataSource" 
                              DataKeyNames="ProductId"
                              OnRowUpdated="ProductGrid_RowUpdated"
                              OnRowDeleted="ProductGrid_RowDeleted"
                              >
                    <Columns>
                        <asp:CommandField ShowEditButton="True" />
                        <asp:CommandField ShowDeleteButton="True" />
                        <asp:BoundField DataField="ProductName" 
                                        HeaderText="ProductName" 
                                        SortExpression="ProductName" />
                        <asp:TemplateField HeaderText="Supplier" SortExpression="Supplier.CompanyName">
                            <ItemTemplate>
                                <%# Eval("Supplier.CompanyName")%>
                            </ItemTemplate>
                            <EditItemTemplate>
                                <asp:DropDownList ID="DropDownList1"
                                                  DataSourceID="SupplierDataSource" 
                                                  DataValueField="SupplierId" 
                                                  DataTextField="CompanyName" 
                                                  SelectedValue='<%# Bind("SupplierId") %>' 
                                                  runat="server" />
                            </EditItemTemplate>
                        </asp:TemplateField>
                        <asp:TemplateField HeaderText="Category" SortExpression="Category.CategoryName">
                            <ItemTemplate>
                                <%# Eval("Category.CategoryName")%>
                            </ItemTemplate>
                            <EditItemTemplate>
                                <asp:DropDownList ID="DropDownList2" 
                                                  DataSourceID="CategoryDataSource" 
                                                  DataValueField="CategoryId" 
                                                  DataTextField="CategoryName" 
                                                  SelectedValue='<%# Bind("CategoryId") %>' 
                                                  runat="server" />
                            </EditItemTemplate>
                        </asp:TemplateField>
                        <asp:BoundField DataField="UnitPrice" 
                                        HeaderText="UnitPrice" 
                                        SortExpression="UnitPrice" />
                        <asp:BoundField DataField="UnitsInStock" 
                                        HeaderText="UnitsInStock" 
                                        SortExpression="UnitsInStock" />
                        <asp:BoundField DataField="UnitsOnOrder" 
                                        HeaderText="UnitsOnOrder" 
                                        SortExpression="UnitsOnOrder" />
                        <asp:CheckBoxField DataField="Discontinued" 
                                           HeaderText="Discontinued" 
                                           SortExpression="Discontinued" />
                    </Columns>
                </asp:GridView>
                <iqw:DataSource ID="ProductDataSource" 
                                runat="server" 
                                ContextTypeName="Northwind" 
                                TableName="Products" 
                                Where="CategoryId == @CategoryId"
                                EnableDelete="true"
                                EnableUpdate="true"
                                EnableInsert="true">
                    <WhereParameters>
                        <asp:ControlParameter ControlID="CategoryList" 
                                              Name="CategoryId" 
                                              PropertyName="SelectedValue" 
                                              Type="Int32" />
                    </WhereParameters>
                </iqw:DataSource>
                <iqw:DataSource ID="CategoryDataSource" 
                                runat="server" 
                                ContextTypeName="Northwind" 
                                TableName="Categories" />
                <iqw:DataSource ID="SupplierDataSource" 
                                runat="server" 
                                ContextTypeName="Northwind" 
                                TableName="Suppliers" />    
            </div>
        </form>
    </body>
    </html>
  • Example2.cs
    using System;
    using System.Web.UI.WebControls;
     
    public partial class Example2 : System.Web.UI.Page {
        protected void ProductGrid_RowUpdated(object sender, GridViewUpdatedEventArgs e) {
            if (e.Exception != null) {
                if (e.Exception is ArgumentException) {
                    this.ErrorMessage.Text = e.Exception.Message;
                }
                else {
                    this.ErrorMessage.Text = "An error occurred while trying to update this product.";
                }
     
                e.ExceptionHandled = true;
                e.KeepInEditMode = true;
            }        
        }
     
        protected void ProductGrid_RowDeleted(object sender, GridViewDeletedEventArgs e) {
            if (e.Exception != null) {
                this.ErrorMessage.Text = e.Exception.Message;
                e.ExceptionHandled = true;
            }
        }
    }

 

* Note:  When attempting to delete a record, you will get a trigger error due to referential integrity.  You can create a new record in the Product table for testing the delete link.

8/24/2009 6:32 AM Eastern Daylight Time  #    Disclaimer  |  Comments [0]  | 
 # Saturday, August 22, 2009

I was trying to work though a LINQ to SQL example using IQToolkit as the data context. I found that the LinqDataSource would work fine for reading the data.  But when attempting to update the data an exception was raised indicating the data context did not extent System.Data.Linq.DataContext.  So to finish up the example, I needed to create a custom LinqDataSource for IQToolkit.  After a little inspection using Reflector, I found that I just needed to create two sub-classes.

The first class that needed to be created was a sub-class of LinqDataSourceView:

using System;
using System.Globalization;
using System.Linq;
using System.Web;
using System.Web.UI.WebControls;
using IQToolkit;
 
namespace IQToolkitContrib.Web {
    public class DataSourceView : LinqDataSourceView {
        private LinqDataSource owner;
 
        public DataSourceView(LinqDataSource owner, string name, HttpContext context)
            : base(owner, name, context) {
            this.owner = owner;
        }
 
        /// <summary>
        /// Make sure that the data context has a property that implements IEntityTable
        /// </summary>
        protected override void ValidateContextType(Type contextType, bool selecting) {
            if (!selecting && contextType.GetProperties().Where(p => p.PropertyType.GetInterface("IEntityTable") != null).Count() == 0) {
                throw new InvalidOperationException(string.Format(CultureInfo.InvariantCulture, "The data context used by IQToolkit-DataSourceView '{0}' must have an IEntityTable Property when the Delete, Insert or Update operations are enabled.", this.owner.ID));
            }
        }
 
        /// <summary>
        /// Make sure that the table implementes IEntityTable
        /// </summary>
        protected override void ValidateTableType(Type tableType, bool selecting) {
            if (!selecting && (!tableType.IsGenericType || tableType.GetInterface("IEntityTable") == null)) {
                throw new InvalidOperationException(string.Format(CultureInfo.InvariantCulture, "The table property used by IQToolkit-DataSourceView '{0}' must extend IEntityTable when the Delete, Insert or Update operations are enabled.", this.owner.ID));
            }
        }
 
        protected override void DeleteDataObject(object dataContext, object table, object oldDataObject) {
            ((IEntityTable)table).Delete(oldDataObject);
        }
 
        protected override void UpdateDataObject(object dataContext, object table, object oldDataObject, object newDataObject) {
            ((IEntityTable)table).Update(newDataObject);
        }
 
        protected override void InsertDataObject(object dataContext, object table, object newDataObject) {
            ((IEntityTable)table).Insert(newDataObject);
        }
    }
}

The second class that needed to be created was a sub-class of LinqDataSource:

using System.Web.UI.WebControls;
 
namespace IQToolkitContrib.Web {
    public class DataSource : LinqDataSource {
        protected override LinqDataSourceView CreateView() {
            return new DataSourceView(this, "DefaultView", this.Context);
        }
    }
}

After building these two classes in a separate assembly, I was able to use the DataSource as I would any other custom server control.

8/22/2009 12:02 PM Eastern Daylight Time  #    Disclaimer  |  Comments [0]  | 
 # Wednesday, August 19, 2009

The following example is a quick proof of concept simply showing how to view the Customer table from the Northwind.dbc.

  1. Create a new WebSite.
  2. Add references to IQToolkit.dll and LinqToVfp.dll
  3. Add a Northwind connection string setting to the web.config
    <connectionStrings>
        <add name="northwind" 
             providerName="System.Data.OleDb" 
             connectionString="Provider=VFPOLEDB.1;Data Source=**Your Path**\Northwind.dbc;"/>
    </connectionStrings>
  4. Add a new class:  Customer.cs
    public class Customer {
        public string CustomerId { get; set; }
        public string CompanyName { get; set; }
        public string ContactName { get; set; }
        public string Address { get; set; }
        public string City { get; set; }
        public string Region { get; set; }
        public string PostalCode { get; set; }
        public string Country { get; set; }
        public string Phone { get; set; }
        public string Fax { get; set; }
    }
  5. Add a new class:  Northwind.cs
    using System.Configuration;
    using IQToolkit;
    using LinqToVfp;
     
    public class Northwind : AVfpDatabaseContainer {
        public Northwind()
            : base(ConfigurationManager.ConnectionStrings["northwind"].ConnectionString, null) {
     
            // this will make it so that all command will be logged to the Output windoww
            this.Provider.Log = VfpQueryProvider.CreateDebuggerWriter();
        }
     
        public IEntityTable<Customer> Customers {
            get { return this.Provider.GetTable<Customer>("Customers"); }
        }
    }
  6. Modify Default.aspx to include to following in the div tag:
    <asp:GridView ID="mainGrid" 
                  runat="server" 
                  DataSourceID="LinqDataSource1" 
                  AllowPaging="True"
                  AllowSorting="True" />
     
    <asp:LinqDataSource ID="LinqDataSource1" 
                        runat="server" 
                        ContextTypeName="Northwind"  
                        TableName="Customers" />
8/19/2009 7:07 AM Eastern Daylight Time  #    Disclaimer  |  Comments [0]  |