Wednesday, March 26, 2008

It's great to see Colin Meek finally blogging. Colin has been a wealth of information on the MSDN Forums for Entity Fraemwrok related questions. It is also COlin who posted teh Entity Framework Extensions on CodeGallery a few days ago.

Colin talks about the extension in his first post and how they can be used to handle a variety of Stored Procedure scenarios in Entity Framework.

For what looks like a pretty complete list of the blogs of the Entity Framework team and others on the Data Programmability team at Microsoft, see the Resources page of the DataDeveloper.NET website.

Thanks to Alex for the heads' up....

Wednesday, March 26, 2008 6:40:07 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Tuesday, March 25, 2008

Because of a bug in the way the schema files are created, the behavior for embedding the model into your assembly and the impact on using that assembly in other projects is a little funky. This will change with the next iteration of the EF that we will see as it has been fixed.

In the meantime, there are two things to keep in mind.

1) When you compile, even if you want the files embedded, choose the Copy to Output Directory option for Metadata Artifact Processing, then build, then change the option to Embed in Output Assembly.

2) If you make a change to the model and rebuild, after it is already being referenced by another project, you may or may not get the changes reflected in the assembly and therefore the client project will still fail. In most cases, doing the 2-step build will do the trick. In other cases, it is necessary to go into the bin directory of the model's project and delete all of the schema files (csdl, msl & ssdl) or just delete every thing in there, then do the two step rebuild again.

As I've been working on samples over and over and over, and adjusting my model, I've gotten into the habit of doing this.

One easy red-flag that you need to do this is if you get an error message complaining about C-side vs. O-side. That means that something in the CSDL is different than the classes (O=Objects) that were codegen'd. So you while the assembly does have the updated classes, it doesn't have the updated model.

Tuesday, March 25, 2008 9:30:49 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

RESOURCE SYSTEMS GROUP is a multi-disciplinary, employee-owned consulting firm specializing in the planning, analysis, and management of business, infrastructure and natural resources. We serve clients who share our belief that high-quality objective analysis is a prerequisite to resolving complex problems. More than just analysts, scientists, and engineers, we’re communicators – our study results are clear, concise, and directly applicable to a client’s particular questions and challenges. Our solutions are creative and grounded by 20 years of experience with clients as large as federal government agencies and Fortune 500 companies or as small as neighborhood interest groups and local municipalities.  

Senior Associate – Software Development

White River Junction, VT

 

This position involves working with the Technology Solutions Practice, supporting the firm’s software and analysis needs. The primary focus will be developing fully dynamic web-based solutions from interface to business logic to back end database design. Managing clients’ expectations throughout the project lifecycle is a key responsibility.  We are looking for someone who is organized, analytical, and experienced in delivering best practice solutions to join our team.

 

·         Minimum bachelor’s degree with emphasis in computer science or a related field

·         Minimum 3 years experience working on large client projects.

·         Demonstrated software development, programming, design and technical presentation skills.

·         Outstanding written and oral communication skills.

·         Practical experience in the following areas:

o    Web Development in HTML and CSS

o    Database programming in SQL

o    Modern object-oriented programming (e.g. C#, VB.Net, Java)

 

Please send resume and cover letter to Recruiting Director at employment@rsginc.com and indicate Senior Associate Software Development in the subject heading.

Recognized as one of the “Best Places to Work in Vermont” and recipient of the 2007 Dean C. Davis Outstanding Business Award, RSG employees enjoy excellent benefits, flexible hours and opportunities for advancement.

We are an equal-opportunity/affirmative action employer.

Please visit www.rsginc.com for more information on Resource Systems Group.

Tuesday, March 25, 2008 8:11:40 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Monday, March 24, 2008

Cool - two in one day!

Another goody on the ADO.NET Entity Framework & LINQ to Relational Data Code Gallery page ...

Entity Framework Extensions Library. I'll subtitle this as "stuff we couldn't get into v1, but know you need"!

The first one today was a tool to help you visualize what different types of mapping in an EDM do and what their schema looks like - EF Mapping Helper.

Monday, March 24, 2008 1:38:20 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

from KIDSvt.com

 

Are you an ASP.NET / SQL Server Developer?  Are you looking for more clients?

 

In need of a freelance ASP.NET / Sql Server Developer to take over the web application needs of a small business.  We have an EXTREMELY urgent need to extract data from a sql server 2005 database into a “pretty” format in MS Word.  We’re willing to purchase the Aspose.Words ( www.aspose.com )software (or any other reasonably priced reporting software tool) to complete the project.  The Aspose.Words software allows you to generate a MS Word document from data in a sql server database, through your ASP.NET application, without having to use MS Word itself.   

 

Beyond this project, we’de like to build a relationship with a local .NET developer so we have a “go to” person to support our future web application needs. 

 

If you’re interested, please contact Susan Holson at 802-985-5482 as soon as possible.

Monday, March 24, 2008 12:30:50 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

There's a new very cool tool on MSDN Code Gallery from the EF Team called EF Mapping Helper.

What it does is allow you to select various mapping scenarios (eg. TPH Inheritance) and the helper will display a visual image of what the mapping does and the actual XML of the CSDL, SSDL and MSL so you can see what it looks like in the actual schema.

You can combine the mapping types to see how they all look together as well.

This is a huge benefit because sometimes it's just hard to set these things up, therefore how can you see the impact. It's a really great way to look at this - if you are not afraid to look at XML. :-) (Since the visual designer can't do everything, it's useful (to say the least) to know how to work in the XML.)

It will also give ideas of some of the cool things you can do with mapping in an EDM that you may not have thought about. EDM's highest power is in it's ability to really shape your conceptual layer in ways that you can't do with traditional ORMs. But learning all of the different ways to customize a model can be daunting. So I'm really happy to see this tool!

Here's a view of a TPH mapping (click on image for full size)

and a view of a model that contains a TPH and TPC (table per concrete type). It's quite dizzying, so I'd recommend looking at individual mapping scenarios first.

Monday, March 24, 2008 9:24:29 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Sunday, March 23, 2008

Bill McCarthy pointed out something I hadn't noticed before.

On the VSExpress product highlights page, it kinda rubs it in our noses.

On the other hand, to the right of the images, VB & C# are treated equally

Visual Basic 2008 Express Edition is the ideal tool for productively building object-oriented applications for Windows on the .NET Framework.
 
Visual C# 2008 Express Edition is the ideal tool for productively building object-oriented
applications for Windows on the .NET Framework.

Bill is a devout champion of VB when it comes to how Microsoft itself, positions the language.

Sunday, March 23, 2008 10:49:01 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Friday, March 21, 2008

IdeaBlade has a 45 minute webcast demonstrating their Entity Framework implementation. They have taken EF and plugged it into their pre-existing framework which already knows how to do a lot of the things that the EF APIs can't do yet. They also have extended the design tools (even with a pluralizer sniff sniff). They have extended the EDMX by adding additional attributes (which apparently won't prevent the model from being used elsewhere) and replace the objectContext with their own object manager.

I'm really impressed. Because they already had their framework that they could plug EF into, they are light years ahead of me, who is starting from scratch trying to figure out how to make EF do these things on it's own - which in some cases is not an easy task.

Some of the things that DEF can do that I am struggling with are

  • Use objects across tiers
  • Use objects across tiers without needing EF on the client
  • Roll back changes to the object cache
  • Query the object cache without hitting the database.

There's more, but it's too depressing to keep listing. I'm just kidding about it being depressing. I'm actually very happy to see someone prove that the EDM and the Entity Framework can be used (even if it takes some tweaking) in real enterprise applications.

I'm also a little envious. It would have been fun to work on this project with all of the resources and existing IP they had at their disposal.

Check out the video.

Friday, March 21, 2008 12:03:38 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [1]  | 
 Thursday, March 20, 2008

I am in the terribly pathetic position of having to try to let people know about my workshop because it was inadvertantly ommitted from the printed brochure which has been inserted in the past few issues of MSDN Magazine and aspNetPRO magazine.

My workshop is listed on the website and the online schedule, but not in the printed brochure, so I think lots of people who may be interested, will not even be aware of it.

This is the start of the full Data Access track at DevConnections. We'll have non-stop data access sessions for four straight days!

Here is a link to the Pre-Conference Workshop page.

SO here it is again:

VPR204: ADO.NET Entity Framework: From 0 to 60 (9:00am - 4:00pm)
Add'l Fee $399

Julia Lerman
This full day workshop will provide you with a full overview of the soon-to-be released ADO.NET Entity Framework, Microsoft's new core data platform. In this workshop, you will learn what the Entity Framework is and how it fits into your application and enterprise architecture. We will begin with an introduction to the Entity Data model, how to build it, and how to implement it in its simplest form. Then you will learn how to take advantage of the true power of the Entity Data Model by creating customized mappings and implementing it in real-world multi-tier architectures. You will learn how to query Entity Data Models using LINQ to Entities, Entity SQL with Object Services, and stream data with Entity Client. The workshop will also explore some of the more complex features of object services as well as offer guidance as to when and where to you will want to use the Entity Data Model and which of its core querying methods is right for different scenarios.

I'll be doing this workshop in at the Developer Summit in Stockholm on April 11th as well.

Thursday, March 20, 2008 10:07:16 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

To our right is Code Camp 9 in Waltham April 5-6.

To our left is the first Code Camp in Albany, Tech Valley Code Camp, April 19th. I'll be on a plane to Orlando that day for DevConnections.

Thursday, March 20, 2008 9:59:50 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

From INETA:

TechEd 2008: Get Involved with Birds-of-a-Feather

Contribute to the Community and Get Rewarded

June 3-6 Orlando, FL

Help Us Make the Birds-of-a-Feather Discussions a Success!

As we said in the February newsletter, INETA is once again coordinating the Birds-of-a-Feather (BOF) sessions at TechEd 2008. Based upon feedback, we have extended the deadline for topic submissions to Wed 4/2/2008 and the voting deadline to Mon 4/7/2008.

 

Announcing a program to recognize individuals who help make the BOF sessions a success!

 

If you sign up to host two sessions and moderate one session OR host three sessions, you will get the following special BOF Volunteer Package including:

  • A TechEd 2008 Day Pass allowing access to all conference sessions, hands-on labs, meals, etc. on Wednesday 6/4/2008 (20 available on a first-come, first-served basis).
  • Special BOF t-shirt.
  • From all the volunteers, five of their user groups will get an extra INETA speaker between now and the end of 2008.
  • Technology book from a major publisher.
  • Attend a special lunch on Wednesday 6/4/2008 for an informal discussion with some technology experts like INETA speakers and individuals from the Microsoft product teams.
  • Have access to the BOF team room Wednesday evening before and during the sessions where you can get food and drink, take a break and check in with other volunteers.

Contact us at noram.bofhelp@ineta.org to volunteer and make the BOF sessions a success!

 

Additional Reources: 

Bof Flyer,  February newsletter, topic submissions, voting, moderator instructions/guidelines

 

Please distribute this Bof Flyer to anybody that might be interested in attending TechEd.

 

Thank you.

 

The INETA BoF Team

Thursday, March 20, 2008 9:55:51 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Code Camp 9 has a beautiful new logo created by Bryan Philips.

Chris Bowen reports that the session for the April 5-6 Code Camp are filling up and the registrations are as well. At last count there are 40 sessions submitted.

Deadline for abstract submission is March 24th.

There is an introductory track this year which is a great opportunity for people who are new to presenting to do a session. In addition, Chalk Talks are a fabulous way to lead a conversation about something that you are interested in wtihout having to do the work of preparing a session and demos or worry about standing in front of an audience giving  presentation.

Submit sessions and register at www.TheDevCommunity.org.

Thursday, March 20, 2008 9:51:59 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Wednesday, March 19, 2008

As a book-writing newbie, I have had to learn to say "no" when I'm used to always saying "yes". For example, I just turned down an invitation to speak at a conference in India. I've never been to India. I hope I'll get invited again.

But you know it's serious when I had to say "no" to watching the first NEW episode in forever of Two and a Half Men last night. It pained me to hear Rich laughing his butt off while I stayed in front of my computer and tried to keep focused.

It's gotten to the point that I was grumbling about having to go to a Dr. appointment on Monday. But I figured, heck, if I die, I can't work anyway, so I might as well go and make sure I'm okay. Luckily it wasn't a doctor who work in the mental health field. Surely they would have locked me up immediately!

Then of course there's the skiing and other forms of exercise that I'm not getting. Thankfully (for me, not for the Mad River Glen's finances) the snow has been dreadful lately.

My saving grace was that the power went out yesterday for an hour. SO I went outside and took a "brisk walk" (is that a sign of age? Not even a run!).

I was thrilled this evening when Rich presented me with an altered part to an old bike trainer that I was hoping to use at least to get some spinning in. The trainer didn't fit my bike. So Rich altered the part and now it fits. Yay. Of course, I'm not on it, I'm working (well, blogging only for a momentary diversion).

It just occurred to me that this blog post sounds like an Andy Rooney commentary. Egad! Well back to work. Tick tick tick.

Wednesday, March 19, 2008 7:35:37 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [2]  | 

Red-Gate is one of those companies that you just can't help but love. They produce phonemenally useful and popular developer /data developer tools, and the community facing people are a joy to work with. It doesn't surprise me that this stems from a company with a good soul. So it's no surprise (but still quite nice) to read that they have been chosen (for the 2nd year in a row) as one of the "Top 100 Best Small Companies to Work For" in the U.K. by the Sunday Times. Read more on Red-Gates's website.

Wednesday, March 19, 2008 7:17:54 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Tuesday, March 18, 2008

Scott Galloway recently joined the ASP.NET team as a P.M. for ASP.NET 3.5. Congratulations!

My conspiracy theory is that Microsoft is actually building a new team for a new product called Scott.NET.

Who's next? Scott Mitchell? Scott Watermasysk? K.Scott Allen? There are still a LOT of ASP.NET Scotts not yet on the payroll.

Tuesday, March 18, 2008 10:09:07 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [5]  | 
 Monday, March 17, 2008

The DataDeveloper.NET website has got some new bling!

I'm using one on the home page of my blog so it's easy for visitors to my blog to find it.

 

 

Monday, March 17, 2008 10:15:20 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

As per my previous blog post, I have just installed CR2008 Service Pack 0 and tested a report that I was unable to run when I upgraded from CRXI to CR2008. Not only did the bug go away, but now I am experiencing some amazing performance gains thanks to the new version of Crystal Reports. Read more here

[A New DevLife Post]

Monday, March 17, 2008 9:35:22 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

In my article, What Visual Studio Developer Should Know about Crystal Reports 2008, for ASPAlliance, I pointed out the fact that CR2008 integrates with VS2003 and VS2005 but NOT VS2008 and that this would be eventually be rectified with a Service Pack.

Thanks to Guy Barrette's blog post "Will the real Crystal Reports 2008 stand up?", (and because I still can't figure out how to subscribe to the Crystal Reports team blog), I learned that the service pack that fixes this is out.

The Crystal Report's blog post about the service pack [Crystal Reports 2008 Service Pack 0] details the changes. Those related to Flash integration and Business Objects Enterprise connectivity aren't of interest to me, per se, but the VS2008 integration definitely is. It also says that CR2008 now runs on Windows 64 bit O/S.

The blog also points out that "It is also now available through the Update Service.  Use Help > Check for Updates within Crystal Reports 2008 to update your version. " but since my 30 day trial ran out I didn't realize this. Now it's time for me to see if the other showstopper problem for me has been resolved.

I'll report back.

Monday, March 17, 2008 8:53:08 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

[thanks to Roger Jennings for the correction about spatial data]

Samir Bajaj, a developer on the Entity Framework team has begun his blog with a bang.

He describes a sample application (available on MSDN Code Gallery) that can switch  between LINQ to SQL or ENtity Framework, highlighting the differences between the two.

The application targets an business case that he is very familiar with  - searching  a database filled with drawings which are based on a collection of shapes. Samir has a background working for a CAD company and explains that it is a common task to search for drawings that contain particular shapes.

Thanks to SQL Server 2008's new spatial data, this gets really interesting.

Added: While SQL Server 2008's spatial data may have been an inspiration, it will not be not supported by LINQ to SQL or EF in the near future, so Samir is using his own techniques with SQL Server 2005.

Check out his blog post and then the app, called Sketchpad (requires SQL Server 2008 CTP)

Monday, March 17, 2008 7:47:33 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Saturday, March 15, 2008

THANK YOU!!!

Saturday, March 15, 2008 9:03:12 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [1]  |