Thursday, December 20, 2007

I have spent a lot of time thinking about Entity Framework in web applications and in SOA and worrying about performance, serialization and concurrency.

But I haven't spent a lot of time worrying about these things with respect to client apps (winforms and WPF).

In a great thread started by Nick in the forums where he was asking about keeping huge lists around in an application without having to hit the db over and over, both Danny Simmons and I assumed he was talking about web apps and started down the whole serialization/caching path.

But it turned out that Nick was worried about a WPF app which changes everything when you are thinking about performance.

In the end, Danny gave this great guidance (with my highlight):

"The context is safe to keep around as long as you are careful to make sure that it is always used only on a single thread (put it into thread local storage and have one copy for each thread if you need multiple threads).  The connection will open and close automatically as needed so you don't need to worry about holding a connection open.  Long-running contexts are the expected pattern for rich client apps--just not the right plan for asp.net scenarios and the like where you want the server to be as stateless as possible."

Thursday, December 20, 2007 8:41:24 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Yesterday was the first break - I broke a promise to myself that I was going to take a few hours out to go skiing. I never did.

Right now we have the most phenomenal snow in Vermont...highly unusual for December (it's still Fall, y'know) and everyone who loves snow wants to enjoy it while they can just in case.

So today I was determined not to break my promise. I didn't leave until 1 hour later than I wanted, but I left. I got to Mad River, put on my boots and defogged my goggles with the great defogger cloth I bought instead of buying new goggles last year. But I noticed there was a 1 inch crack in my goggles. Oh well. I put them on anyway, went outside, grabbed my skis and walked over to the single chair where I put them on. First the right, then the left. Something looked funny on the left. My binding was BROKEN! There's a big plastic piece that pulls the cable tight around the boot and it was cracked. But I could still clamp down and it seemed solid.

Just in case, I went to the ski shop and they said that it would be way too dangerous to ski on them. Arrgh. We are talking PERFECT PERFECT packed powder conditions, 30 degrees and no wind. And I couldn ski. Rather than renting skis and skiing anyway, I drove down the mountain in to Waitsfield and dropped off my skis at a local ski place to get the bindings either fixed or replaced overnight.

Then I drove home and figured I'd go ski in my woods instead.

I took out my brand new back country boots that I've only worn 3 times so far. They are new fangled hightech boots and the zip up (similar to cross-country boots now). The zipper pull broke off in my hand.

I managed to zip it up anyway and I finally got out to do one loop in the woods with no more breaks and got back to the house before dark. The snow was so perfect, it was worth all the effort.

But geeze loueeze - that was starting to push it!

Thursday, December 20, 2007 4:59:53 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [3]  | 
 Wednesday, December 19, 2007

I wrote a series of Astoria posts based on the preview and have been thinking about updating them for ADO.NET Data Services, but it seems that it would be pretty redundant considering that we have three great resources already doing the same:

Mike Taulty has two posts now in a series: ADO.NET Data Services - Getting Started (2)

Guy Burstein is writing a series:ADO.Net Data Services Part 2 - Using Service Operations with WebGet

Jonathan Carter is writing series: ADO.NET Data Services Part 1: Services

Thanks guys. That means I can go do something else...

 

Wednesday, December 19, 2007 9:38:38 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Tuesday, December 18, 2007

Note: This blog post explains theory as well as steps to implementing the stored proc. If you read my blog regularly,  you are used to this.

As with the previous CTP Wizard, the Wizard in the new EF Tools (CTP2) will create functions in the Store Layer of the model to represent stored procedures in the database that the wizard is building a model from.

And as with the previous CTP, that's all you get. It doesn't implement it all the way through to the conceptual layer to be used in your applications. The documentation for the previous CTP showed how to complete DML stored procedures (Insert, Update & Delete) but not SELECT stored procedures that return data. So, I wrote a blog post in September that describes how to implement a SELECT stored procedure in EDM.

With the new tools, the Insert/Update/Delete functions are very simple to create now. Which is great. Select stored procedures with results that match an entity is also a breeze (see Guy Burstein's blog post that walks through these).

But as of yet, there is no help for the Select stored procs that return miscellaneous results.

Therefore I wanted to update the instructions since you can do a few more things with the wizard for this. But you'll still need to work with the raw XML of the EDMX file.

Let's start with a simple example.

There is a stored procedure that I added to the AdventureWorksLT db that takes a year as a parameter and returns a list of Company Names with their total sales for the year. The resulting schema contains TotalSales, CustomerID and CompanyName. This result set doesn't line up with any tables/views in the db or entities in my conceptual layer.

When the EDM is generated from the database the stored proc is realized in the StoreLayer. You can see this in two ways.

The Model Browser

Or in the raw xml of the EDMX file, in the Storage Section:

      <Function Name="annualCustomerSales" Aggregate="false" 
                BuiltIn="false" NiladicFunction="false" 
                IsComposable="false" 
                ParameterTypeSemantics="AllowImplicitConversion" 
                Schema="dbo">
           <Parameter Name="fiscalyear" Type="char" Mode="In" />
       </Function>

You can see that it does not determine the output parameters, which would be a daunting task to build a parser for.

So you need to create the following:

1) An entity that matches the schema of the results (TotalSales, CustomerID, CompanyName)
2) A function in the conceptual layer that maps back to the function in the store layer (called an import function)
3) Every entity needs to map to something in the store layer, therefore you need a fake table in the store layer that matches the entity in the conceptual layer .
4) The entity in the store layer needs an entity set
5) Lastly, the entity in the conceptual layer needs to map back to the entity in the store layer.

#3 through #5 are extraneous to what we are trying to do, but EDM has rules that need to be followed, so we need to throw all that extra stuff in there. It would be great if we could somehow just map the function to the entity - or if we could just use the function and return an anonymous type. But we can't. So, let's just move forward.

This seems like a lot of steps, but once you do it, it will make sense.

Step 1) You can create entities using the designer, so this isn't so bad. Create a new entity and add the properties that are returned in the results. Here's what mine looks like:

The customerID is flagged as a Key for the entity. An EntitySet will automatically be created. In my model it was named "result_annualCustomerSalesSet". Be sure to set the properties of the properties correctly (type, length, etc.) You can use properties of other entities in the model for clues as to what those values should be.

Save the model.

Step 2) Create an import function. In the Model Browser (right click in the designer and choose Model Browser if it isn't visible), locate the stored procedure inside the Store layer (see screenshot above for a reminder). Right click on the stored proc and choose Create Function Import. You'll get a screen where you need to fill out the Function Import Name and select an entity from a drop down list.

After you hit okay, the EDM will be updated and you will see the function import in the Model Browser.

Note that if the results matched an existing entity (a mapped entity, that is) you would be finished here.

Step 3) Create an Entity in the Store Layer that the result_annualCustomerSales entity will get mapped to. I cheat a little here by copying and pasting the Entity from the conceptual layer into the store layer then make appropriate edits.

In the conceptual layer it looks like this:

    
          <EntityType Name="result_annualCustomerSales">
              <Key>
                  <PropertyRef Name="CustomerID" />
              </Key>
              <Property Name="CustomerID" Type="Int32" Nullable="false" />
              <Property Name="TotalSales" Type="Decimal" Nullable="true" 
                 Precision="19" Scale="4"   />
              <Property Name="CompanyName" Type="String" Nullable="true" 
                 MaxLength="128" Unicode="true" FixedLength="false" />
          </EntityType>
After pasting this into the store layer section with the other EntityType elements, I edit so that the 
store
entity looks like this

          <EntityType Name="result_annualCustomerSales">
              <Key>
                  <PropertyRef Name="CustomerID" />
              </Key>
              <Property Name="CustomerID" Type="int" Nullable="false" />
              <Property Name="TotalSales" Type="money" Nullable="true" />
              <Property Name="CompanyName" Type="nvarchar" Nullable="true" />
          </EntityType>

If you need help determining what the property properties (eg type) should be, look at some of the other Entity Types in the store model for clues. I use the same trick with the conceptual entity to figure out precision and scale for the TotalSales property.

Step 4) You also need the EntitySet in the store layer. Copy and paste that, too.

Entity Set in Conceptual Layer
        <EntitySet Name="result_annualCustomerSalesSet" 
             EntityType="AdventureWorksLTModel.result_annualCustomerSales" />
 
Entity Set in Store Layer        
        <EntitySet Name="result_annualCustomerSalesSet" 
EntityType="AdventureWorksLTModel.Store.result_annualCustomerSales"
                   Schema="dbo"/>

Almost done!

Step 5) Map the Conceptual Entity to the Store Entity.

If the Mapping Details are not showing, click anywhere in the designer and choose Mapping Details. By default it will show up in the same area as the error list, etc. in the IDE.

In the designer, select the new Entity. You will see a little info about it in the Mapping Details window. Drop down the list for "Add a Table or View" and choose the table definition you created in the store layer.

All matching properties will automatically be mapped.

FINALLY YOU ARE DONE!

Now let's go to the code and see the sproc in action!

    Dim aw As New AdventureWorksLTModel.AdventureWorksLTEntities
    Dim qsales = aw.annualCustomerSales("2004")
    For Each cust In qsales
      Console.WriteLine(String.Format("{0}: Sales= {1:C}", cust.CompanyName, cust.TotalSales))
    Next

Here's a bit of the output

Aerobic Exercise Company: Sales= $2,361.64
Bulk Discount Store: Sales= $98,138.21
Eastside Department Store: Sales= $92,663.56
Coalition Bike Company: Sales= $2,669.32
Instruments and Parts Company: Sales= $70,698.99
Many Bikes Store: Sales= $81,834.98
Closest Bicycle Store: Sales= $39,531.61
West Side Mart: Sales= $87.09
Riding Cycles: Sales= $86,222.81
Futuristic Bikes: Sales= $272.65
Vigorous Sports Store: Sales= $1,170.54
Thrilling Bike Tours: Sales= $15,275.20
Trailblazing Sports: Sales= $45,992.37
Paints and Solvents Company: Sales= $14,017.91
Channel Outlet: Sales= $608.18
Thrifty Parts and Sales: Sales= $1,379.17
Engineered Bike Systems: Sales= $3,754.97
Essential Bike Works: Sales= $45.20

Tuesday, December 18, 2007 8:59:07 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Monday, December 17, 2007

I thought I saw this a week or so ago but couldn't find it again, but it just appeared on David Sceppa's blog.

"It" is a list of vendors who will have Entity Framework providers out within 3 months of Entity Framework's release.

While Oracle is not on there DIRECTLY, there are 3rd party companies working on Oracle providers as well.

In the list are:

Oracle, MySQL, PostgreSQL, SQL Lite, DB2, Informax Dynamic Server, and VistaDB.

DataDirect will have their host of providers out sometime in 2008.

Firebird will have their db also sometime in 2008.

Get the details on David's blog.

 

 

Monday, December 17, 2007 9:46:49 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Zlatko Michailov has been posting some awesome stuff on his blog.

There are two that I want to highlight.

The first is because it helps me answer a question I am often asked is explaining why Entity Framework is not an ORM and how it compares/contrasts to ORMs.

The second is announcing that his tool that will REAAAAALLY help with writing ENtity SQL is now on codeplex; it's called eSqlBlast. Zlatko demo'd this in his DevTEach session in Vancouver. HE wrote it himself and it is something like Query Builder for SQL SErver, where you can write queries (with the help of intellisense) and test them out rather than writing and debugging directly in your project (where there could be many other problems in the way that have nothing to do with syntax). It's a must have tool for writing EntitySQL as we work our way into gaining experience and being more comfortable with it.

I must say that Zlatko's blog post about eSqlBlast is pretty humble - just a few sentences. It's a hugely impressive tool and he deserves gobs of praise for it. Try it out and let him know what you think!

Monday, December 17, 2007 8:44:29 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

The DevLife blog posts for May 2005 - March 2007 are now being hosted on my personal site at www.thedatafarm.com/devlifeblog.

Thanks to everyone at Ziff Davis and Ziff Davis Enterprise for rescuing the old posts and allowing me to continue hosting them.

Monday, December 17, 2007 5:57:32 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

When I was at the MIX n MASH 08 event a few weeks ago in Redmond, there were a number of reasons that I definitely got excited about MIX. Read more...

[A New DevLife Post]

Monday, December 17, 2007 2:01:05 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Sunday, December 16, 2007

I had been thinking that I don't want to write up a whole story about our year to put into the christmas cards for those distant relatives that we hardly ever see, yet I wanted to at least have a little something to share with them.

Then today, I got the perfect solution in the form of a friend's holiday letter - she created a comic strip from a handful of pictures using Comic Life from plasq. THere are versions for WIndows and Mac. We printed out a bunch and also exported it to a jpg. Mine's a little lame, but you can get very creative. Definitely a fun tool!

Click on the mini version to see it full size.

Sunday, December 16, 2007 4:46:58 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Saturday, December 15, 2007

1-2 inches tonight

7-11 tomorrow

4-8 tomorrow night

We are at a higher elevation so generally we trend toward the higher side which adds up to 21"!

I know where I'm going to be on Monday!

Saturday, December 15, 2007 9:48:37 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [1]  | 
 Friday, December 14, 2007

One of the new features in Entity Framework Beta3 is the ability to embed the csdl, msl and ssdl schema files into the assembly which contains the model.

This is useful in scenarios where, like in a few of my solutions, you want to have a separate project to host the model and then use that project in various applications. In that case you need to make a reference to the dll with the model and the application using the model will need to know where to find the schema files through the metadata property of the special connection string.

At design time, you work with the EDMX file in the designer and you can also manually edit it's XML if and when necessary. When the project is compiled, the 3 key sections of the EDMX file are spit out to the separate schema files (*.csdl, *.mls, *.ssdl) which are used by the EF APIs.

With the schema files embedded into the dll, we don't have to keep track of the files.

Here's how to pull it off. Note that there is a workaround in these instructions for a known bug.

My project that hosts the model is called AdventureWorksModel. In it are the model as well as some additional code that extends the functionality of the code generated classes.

By default, the EDMX file's Build Action property is set to "EntityDeploy". This is important to note in case you change it for some reason. It does need to be "EntityDeploy". (I learned that the hard way, which is why I make a point of mentioning it.

Open the EDMX file in the design window and then you will see a new property in the property window called Metadata Artifact Processing. The default of this is "Copy to Output".

To get around a current known bug, build the project with the property set to "Copy to Output". Then change the Metadata Artifact Processing property to "Embed in Output Assembly". Eventually you won't need to build with Copy to Output first.

Build the project. After building, if you use a tool like Reflector, you can see the files have been compiled into the dll as in the screenshot below.

If you check the connection string in the app.config for the project you will see that there is a reference to the projects resources in the metadata properties, rather than to a file path.

<add name="Entities"
connectionString="metadata=res://*/AWModel.csdl|res://*/AWModel.ssdl|res://*/AWModel.msl;
provider=System.Data.SqlClient;provider connection string=&quot;
Data Source=127.0.0.1;Initial Catalog=AdventureWorksLT;Integrated Security=True;MultipleActiveResultSets=True&quot;"
providerName="System.Data.EntityClient" />

Now you can reference the project or the dll directly, I have been successful with both methods.

The connection string in the model's project needs to get copied into the config file of the app.

Then you should be good to go.

I did deploy the solution copying only the exe, the dll for the model and the app.config for the exe and it worked like a charm. No ssdl, csdl or msl files came along for the ride.

Thanks to Mike Kaufman and some others on the team for help as I tried to figure out how to get through this.

An arhitectural note... embedding the files will be useful in a number of scenarios. However there will also be many scenarios in which you do not want the schema files compiled into the dll so that you can replace them easily as needed without having to redeploy a dll. Granted with .NET, deploying a dll can be just as easy as deploying a new xml file, but I know there will be cases where I will prefer the loose coupling.

For those cases, I'll want to work with the EntityDeploy msbuild task directly so that I can define the output location of the files that are built and easily maintain a common location as I did in this blog post which showed how to do it in Beta 2 (though that particular solution is no longer applicable). I'll be fiddling with the msbuild task shortly.

Friday, December 14, 2007 9:52:57 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [3]  | 

Scott Guthrie has a post on Dynamic Data Support for ASP.NET that's in the Extensions CTP. Based on my little rant from yesterday, I wanted to point out this:

One of the cool new features is something we call "ASP.NET Dynamic Data Support".  In a nutshell this enables you to really quickly build data driven web-sites that work against a LINQ to SQL (and in the future LINQ to Entities) object model - and optionally allows you to-do this without having to build any pages manually.

Friday, December 14, 2007 11:49:56 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I have been a fan of this show for a loooong time. It comes to Vermont occasionally, but I seem to miss it. I just learned it will be here August 23, 2008 and already bought a pair of tickets! So now, I have no excuses.

The tickets officially go on sale on Monday and you can get them through the Flynn Theater Box Office.

Friday, December 14, 2007 11:05:02 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Thursday, December 13, 2007

VSM has a new website and it is finally possible to find content! Hooray. Nice job folks.

Thursday, December 13, 2007 8:10:56 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
Thursday, December 13, 2007 11:41:12 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Wednesday, December 12, 2007

When I was at ReMix Boston in early October, I remember that Stan Shultes told me that someone was doing user group presentation on Entity Framework in Florida but couldn't think of the person's name at the moment. Shortly afterwards, I had an email conversation with someone who had asked an interesting question on the ADO.NET forums and when he said he lived in Florida, I correctly put two and two together. It was Jonathan Carter who had been doing the presentations.

I met Jonathan a few weeks later at an SDR at Microsoft and, although I'm used to how young many programmers seem to me now (it's all relative ... only because I"m so friggin' old now ;-)), I was surprised how young he was, but oh so smart. And of course, we had our passion for Entity Framework and Astoria in common!

This didn't go unnoticed and now Jonathan is wearing a blue badge! He is now the technical evangelist for Visual Studio and .NET Framework - a pretty impressive position to start with.

You can read more about Jonathan's new job here and then check out the rest of his blog because he's been blogging up a storm.

 

Wednesday, December 12, 2007 6:28:01 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I've been using the GetObjectStateEntry method for a while so that I can view and interact with the state of a particular entity that I have in hand.

Today I used the plural version of this method for the first time and boy do I like it!

GetObjectStateEntries takes as a parameter an EntityState enum: Added, Modified, Deleted, Unchanged or Detached.

It provides a perfect opportunity to do some work on entities prior to hitting the datastore during a save changes event.

For example, if you have an entity with a property to track the modification date you could update that property any time any other property in the entity is changed which might be wasteful. But with the GetObjectStateEntries method, I am able to just update the Modified Date property on all changed objects at once just before I save changes.

Here's some code for dealing with the Customer entity that is derived directly from the customer table in the AdventureWorks database.

Now, this poses an architectural question and you may want to put this particular business logic elsewhere, but it's merely a demonstration of what you can do with this method.

Because the generated classes are partial classes, I just create another partial class for my AdventureWorksLTEntities class and intercept the SaveChanges method. Then I grab all of the modified objects, use the Entity property to filter just Customers, then changed the Modified Date property. Next I grab the Added objects, change the Modified Date and also add in a default password hash and password salt. These are required for customer rows. (Read more about hashing passwords here on Beth Massi's blog.)

Namespace AdventureWorksLTModel
 
  Partial Public Class AdventureWorksLTEntities

    Private Sub AdventureWorksLTEntities_SavingChanges(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.SavingChanges
      Dim changedEntities = Me.ObjectStateManager.GetObjectStateEntries(EntityState.Modified)
      For Each stateEntryEntity In changedEntities
        If TypeOf stateEntryEntity.Entity Is Customer Then
          Dim cust As Customer = stateEntryEntity.Entity
          cust.ModifiedDate = Now
        End If
      Next
      Dim addedEntities = Me.ObjectStateManager.GetObjectStateEntries(EntityState.Added)
      For Each stateEntryEntity In addedEntities
        If stateEntryEntity.Entity.GetType() Is Customer Then
          Dim cust As Customer = stateEntryEntity.Entity
          cust.ModifiedDate = Now
          'password hash cannot be null
          'for demo purposes just put a default string in there
          Dim strPassword As String = "p@ssw0rd"
          Dim encoder As New System.Text.UTF8Encoding()
          Dim SHA1Hasher As New Security.Cryptography.SHA1CryptoServiceProvider
          Dim hashedBytes As Byte() = SHA1Hasher.ComputeHash(encoder.GetBytes(strPassword))
          cust.PasswordHash = Convert.ToBase64String(hashedBytes)
          'customer table also needs salt for hash
          Dim buffer() As Byte = New Byte(5) {}
          Dim rng As New System.Security.Cryptography.RNGCryptoServiceProvider()
          rng.GetBytes(buffer)
          cust.PasswordSalt = Convert.ToBase64String(buffer)
        End If
      Next
    End Sub

  End Class
End Namespace

I have a feeling that this existed in Beta2, but I have updated both of my boxes and don't feel like digging into a VPC just to verify.

Wednesday, December 12, 2007 5:50:08 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

One of the changes with the new CTP release of ADO.NET Data Services (formerly Astoria) is that you can create a service against any iQueryable, not just Entity Framework. This is huge.

Roger Jennings points to Guy Burstein's how-to with Astoria (I guess it's time to update my own now outdated posts) and makes the following comment:

"Like Andy Conrad, Guy uses LINQ to SQL instead of the Entity Framework as the data source. I have the feeling this substitution will become universal, at least until RDBMS vendors other than Microsoft deliver EntityClient data providers."

So this bugs me a little. Why? Because the issue is that right now, Entity Framework only works with SQL Server. But hello, what do you people think LINQ to SQL works with? It's called LINQ to SQL for a reason! ;-)

Okay, rant over, back to work...

Wednesday, December 12, 2007 4:50:48 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I've done this demo many times in conference and user group sessions. Someone on the ADO.NET forums asked how to do it and I thought I would just do a quick tutorial with screenshots.

What this Tutorial does is demonstrate how to create and use a data source from a particular entity in the model. I'm just doing simple drag and drop and no filtering or anything here with the goal of just a quick basic walkthrough for getting started.

Start by creating a Windows Application.

Add an Entity Data Model.

Select Data from the menu and choose Add New Data Source

In the first page of the wizard, choose Object as your Data Source Type.

The next screen of the wizard will show the namespaces in the current solution. Open up the namespace for the application

then choose the entity which you want to use as a Data Source. I will pick customer.

Then you can Finish the Wizard.

Now to get easy access to the datasource, go back to the menu and choose Show Data Sources from the Data menu.

The DataSources Window will be placed in your IDE in it's default location. Mine docks with the windows on the left.

When it's not pinned it gets tucked away with the others. You can undock it and put it wherever you want.

I can now drag and drop the customer data source onto the windows form to get the automatic DataGridView and Navigation toolbar (this is normal behavior for DataSource and not specific to Entity Framework).

There are a few more steps to actually getting user interaction with this. You need to populate the Binding Source and if you want to edit, you'll need to add a little code to the save button on the toolbar.

You'll need to enable the BindingNavigatorSaveButton (just click the save icon on the navigator toolbar and change it's Enabled property to True). Additionally, you'll probably want to format the grid which you can do easily from it's SmartTag and more thoroughly through the properties window.

Here's what the code behind looks like in my form enabling me to view, add, delete, edit and save data.

Imports WindowsApplication1.AdventureWorksLTModel
Public Class Form1
  Private aw As AdventureWorksLTEntities
  Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    aw = New AdventureWorksLTEntities
    CustomerBindingSource.DataSource = aw.Customer.OrderBy(Function(cust) cust.CompanyName)
  End Sub

  Private Sub CustomerBindingNavigatorSaveItem_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles CustomerBindingNavigatorSaveItem.Click aw.SaveChanges() End Sub End Class

Note that because the AdventureWorks Customer table has the following constraints: ModifiedDate must be a valid date value and the PasswordHash and PasswordSalt fields cannot be Null, I have extended the entity class to take care of these things when SaveChanges is called.

Wednesday, December 12, 2007 12:25:30 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [5]  | 
 Tuesday, December 11, 2007

Ann DeMarle is the director of the Emergent Media Center at Champlain College in Vermont. She has started blogging at http://emergentmediacenter.blogspot.com  and I look forward to her great insights!

I was honored to be invited by Ann to participate in a Degree Advisory Council for this program.

Tuesday, December 11, 2007 10:01:16 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  |