Arkansas User Group Meetings–February 2012

Here is the listing of all the User Group meeting in February 2012 that I know of.  If you know of a User Group meeting in the area please add to the comments.

Little Rock .NET User Group

Exploring iOS Development - Chris Varn

Mobile development is a necessity to stay relevant in today’s day and age. iOS, along with Android, is the leading platform for mobile development. Join us as we discuss the mobile landscape and where iOS fits. We will explore the differences between Objective-C and C# and what it takes to get started in iOS development. We will then go through the process of writing an app.

When: February 9, 2012 – 6:00 PM
Where:  Pulaski Technical College - Lecture Room B Campus Center - 3000 West Scenic Drive North Little Rock, AR 72118

Fort Smith .NET User Group 

Ruby on Rails on Windows – Taylor Otwell

If you're a Windows person, getting started with Rails hasn't always been easy. Thankfully, that has changed! We'll quickly walk through installing Ruby, Rails, and Git on your machine. Then, we'll take a look at some of the slick features of the Ruby on Rails web framework while making a few comparisons to ASP.NET MVC. Finally, we'll deploy a simple application to the cloud using Git and Heroku!

New Location: ABF General Office
When: February 13, 2012 – 6:00 PM
Where: ABF General Office - 3801 Old Greenwood Rd Fort Smith, AR 72903

Northwest Arkansas Project Management Institute

The Art of Stakeholder Management – James T. Brown Ph.D, PMP, PE, CSP, President SEBA Solutions Inc.

Great project managers know that success goes beyond the triple constraint deliverables and includes managing stakeholder expectations. Three aspects of managing stakeholder expectations are:

  1. Know your stakeholders
  2. Know what you are supposed to deliver from the perspective of the stakeholder
  3. Hold your stakeholders accountable to the realities of the project (regardless of the position of the stakeholder, the attitude of the stakeholder, or the availability of the stakeholder).

This presentation provides tactics to identify, herd and lead stakeholders to ensure a successful project deliverable with minimum project manager stress level.

When: February 20, 2012 – 6:00 PM
Where: NWACC Jack Shewmaker Center – 1100 SE Eagle Way Bentonville, AR 72712

Northwest Arkansas .NET User Group

Model-View Patterns: Making Sense of MVC, MVP and MVVM – Rob Vetter

The separation enforced by 'Model View' patterns can quickly transform your application into a maintainable, modular and rapidly developed package. New features are easily added, new screens are a snap, testing is enhanced and developers and designers can more easily work simultaneously.

Come compare the Model-View-Controller (MVC), Model-View-Presenter (MVP) and Model-View-View-Model (MVVM) patterns. In this session, we'll...

  • Explore the foundation, benefits and drawbacks of each pattern at an architectural level
  • Contrast differences between each pointing out applicable situations where each may apply
  • Walk through a variety of examples on the Microsoft platform, including Microsoft MVC, ASP.Net, Silverlight and Windows Presentation Foundation

    You'll walk away with a clear understanding of each pattern, with examples that you can implement in your projects.

    When: February 28, 2012 – 6:00 PM
    Where:  University of Phoenix -  1800 S. 52nd St, Suite 100 Rogers, AR 72758

    Northwest Arkansas SQL Server User Group

    Entity Framework for DBA’s – Rob Vetter

    While most enterprise applications are object-oriented, the data upon which they depend is not. Often, binding these two platforms together can result in significant amounts of lost productivity and a less than optimal solution.

    To resolve these shortcomings, Microsoft has created the ADO.NET Entity Framework and is now strongly recommending that development teams implement it in their applications.

    As a DBA, you’ll need to understand how the Entity Framework works and how it affects your role as a DBA.
    In this session, we’ll…

    • Explore the Entity Framework 4.0, its related components and show how it all works
    • Demonstrate the various ways to build a business object model (Entity Data Model) and map it to an underlying database
    • Walk through a variety of examples of how to interact with the model, including LINQ, Entity SQL and Stored Procedures
    • Show how the Entity Framework can generate select, insert, update and delete SQL statements on the fly
    • Explore the Entity Framework’s impact on permissions, connections, transactions, performance, security and concurrency

    You’ll walk-away with a clear understanding of how the Entity Framework 4.0 works, why developers and architects want to implement it and how it affects your role as a DBA.

    When: February 29, 2012 - 11:30 AM – 1:00 PM
    Where: University of Phoenix - 1800 S. 52nd St, Suite 100 Rogers, AR 72758

    LINQ: Exception, Null or Object?

    I have run into a problem.  LINQ didn’t behave as I had expected when trying to query an object from a list.  So I set out to figure out what I didn’t know.  Turns out I am not alone in this since I have been asked about it several times. This post  will look at what you can expect to happen when you query a list of objects that does not contain the item you are looking for.  This can produce three different outcomes depending on the way you approach it.  You will either get an exception, a null object or an empty object.

    Before we begin we need a class to give us some useful data to query against.

    I created a real simple Item object with just an id and name, as well as, a simple class to build up a IQueryable<Item> for us to run some LINQ queries against.

       1:      public class Item
       2:      {
       3:          public int Id { get; set; }
       4:   
       5:          public string Name { get; set; }
       6:      }
       7:   
       8:      public class ItemData
       9:      {
      10:          public IQueryable<Item> GetItems()
      11:          {
      12:              var users = new List<Item>
      13:                  {
      14:                      new Item {Id=1, Name = "Item 1"},
      15:                      new Item {Id=2, Name = "Item 2"},
      16:                      new Item {Id=3, Name = "Item 3"},
      17:                      new Item {Id=4, Name = "Item 4"},
      18:                      new Item {Id=5, Name = "Item 5"},
      19:                  };
      20:   
      21:              return users.AsQueryable();
      22:          }
      23:      }

     

    Single

    var single = items.Single(x => x.Id == 10);

    Single returns the single, specific item from a sequence of values that matches your query.  Single throws an exception if there is not exactly one element in the sequence.  In my testing when looking for an item not in the sequence it threw [System.InvalidOperationException] = {"Sequence contains no matching element"}.

    Single with DefaultIfEmpty

    var singleDefaultIfEmtpy = items.DefaultIfEmpty(new Item()).Single(x => x.Id == 10);

    So what changes of we add the .DefaultIfEmpty(new Item()) to the query?  None at all, it still throws [System.InvalidOperationException] = {"Sequence contains no matching element"}.

    SingleOrDefault

     
    var singleOrDefault = items.SingleOrDefault(x => x.Id == 10);

    This one is a little better, it doesn’t throw an exception it returns null.  Why didn’t it return an empty Item object?  You’d think that would be the default and that it could figure it out because it knows what type of object we are querying for.  Nope, if you don’t specify the default value you get null.

    SingleOrDefault with DefaultIfEmpty

    Ok, so lets specify a default value with .DefaultIfEmpty.

    var singleOrDefaultIfEmpty = items.DefaultIfEmpty(new Item())
                    .SingleOrDefault(x => x.Id == 10);

    I expected to get a new Item object, but guess what I got null.  I couldn’t figure out why, the documentation states ‘The SingleOrDefault method does not provide a way to specify a default value. If you want to specify a default value other than default(TSource), use the DefaultIfEmpty(Of TSource)(IEnumerable(Of TSource), TSource) method as described in the Example section.’

    I did that yet I still got a null, and not an empty Item object.  Hopefully, you guys can tell me why.

    First and FirstOrDefault, Last and LastOrDefault

    First, FirstOrDefault and Last and LastOrDefault gave the same results as their respective counterparts.  It appears that the OrDefault doesn’t mean anything.

    Where

    Let’s look at using Where(), cause hey let’s be honest this is the way I write most of my queries anyway.  Where by itself returns IQueryable<T> which what we expect, but let’s look at what happens when use DefaultIfEmpty by itself and with First and FirstOrDefault.

    Where with DefaultIfEmpty

    var whereDefaultIfEmpty = items.Where(x => x.Id == 10)
                    .DefaultIfEmpty(new Item());
     

    Hey, we are finally starting to get some results, this returned a new Item object.

    Where with First

    Ok, so what if we put First?

    var whereFirst = items.Where(x => x.Id == 10).First();

    Oh, here is our old friend InvalidOperationException, no joy!

    Where with First and DefaultIfEmpty

    So, for fun let’s see if adding the DefaultIfEmpty makes a difference.
     
    var whereFirstDefaultIfEmpty = items.Where(x => x.Id == 10)
                    .DefaultIfEmpty(new Item())
                    .First();
     

    This return a new Item object. Ok, so now we are starting to see when DefaulIfEmpty helps. Remember just using it with First without Where just threw an exception.

    Where with FirstOrDefault

    var whereFirstOrDefault = items.Where(x => x.Id == 10).FirstOrDefault();
     

    This behaved no different than just using FirstOrDefaul(x=> x.Id == 10), we got a null.

    Where with FirstOrDefault and DefaultIfEmpty

    Ok, so DefaultIfEmpty made a difference when using First, let’s hope it does the same for FirstOrDefault.

    var whereFirstOrDefaultIfEmpty = items.Where(x => x.Id == 10)
                    .DefaultIfEmpty(new Item())
                    .FirstOrDefault();

    Eureka! A new Item object.

    Summary

    From what I was able to figure out reading the online documentation and my own testing it I recommend using DefaultIfEmpty() with Where() alone or with FirstOrDefault.  But remember using it with Single, SingleOrDefault, First, FirstOrDefault, Last, or LastOrDeafult will not get you the default object, you will either get an InvalidOperationException or  null.

    Now that I understand how and when DefaultIfEmpty makes a difference I can create LINQ queries that return the results I expect and I will be able to predict if I will get an Exception, Null or Object.

    If you have experienced something different, disagree, or have a better way to approach this please post a reply.  The discussion just makes all of us better.

    Definitions of Designations

    Saw this on Google+ posted by Eric Miao and just had to share it.  I am not sure where he got it but it sure made me laugh.

    Definitions of Designations

    • Project Manager is a Person who thinks nine women can deliver a baby in One month.
    • Developer is a Person who thinks it will take 18 months to deliver a Baby.
    • Onsite Coordinator is one who thinks single women can deliver nine babies in one month
    • Client is the one who doesn’t know why he wants a baby.
    • Marketing Manager is a person who thinks he can deliver a baby even if no man or woman are available
    • Resource Optimization Team thinks they don’t need a man or woman; they’ll produce a child with zero resources
    • Documentation Team thinks they don’t care whether the child is delivered, they’ll just document 9 months
    • Quality Auditor is the person who is never happy with the PROCESS to produce a baby
    • Tester is a person who always tells his wife that this is not the Right baby
    • HR Manager is a person who thinks that a donkey can deliver a human baby in given 9 months

    First WP7 Application: Dominionizer

    image

    Dominionzier

    Over that last several months Chris Koenig and myself have been working on a Windows Phone 7 application that helps ease the task the picking the kingdom cards for playing the game of Dominion.  Version 1.0 to the market place and received certification in 3 days and it went live over the weekend.

    It has been an awesome project to work on and we have a few features we want to add in version 2.0.  Currently supported cards sets: Dominion, Intrigue, Seaside, Alchemy, Prosperity, and Cornucopia, as well as the three promo cards.

    I want to thank Chris for all of his support and patience while working with me on the project.  If you are a fan of Dominion please check out.

    Description from Windows Phone Market Place

    Dominionizer is an application to help ease the task of picking the 10 kingdom cards needed to play the card game Dominion.

    Diminionizer supports the following Dominion, Intrigue, Seaside, Alchemy, Prosperity, and Cornucopia, as well as the three promo cards.

    Settings allow you to control which sets are included in random selection. Other options allow you to apply rules to how the cards are picked, current rules allow for Require 2-5 Cost Cards and Require Reaction To Attack.

    Once the cards are picked you may swap a card out for a different randomly selected card by tap-hold and selecting Swap Card. If you can't remember what a card does you can also tap-hold and select View Card to see the card information.

    Screenshots

    Dominionizer_Main Dominionizer_Main_Menu

    The main screen displays the randomly picked cards along with cost, potion cost, and an icon to indicate which set the cards came from.  If you do not like a card you can use the hold menu to swap the card for a different card, or view an image of the actual card.

    Dominionizer_Settings Dominionizer_Rules 

    Settings allow you to control which sets are used for the card selection, and rules allow you to control how the cards are picked.  If you want to make sure you have an even spread of cost you can turn on the Require Two to Five Cost Cards rule.  If you don’t want to have an attack card without a way to defend yourself turn on the Require Reaction To Attack rule.

    Microsoft MVP: ASP.NET/IIS Awarded; Again!

    image

    Microsoft once again has chosen to award me with the MVP Award for ASP.NET/IIS.  Once again I find myself very honored and humbled to be recognized for my efforts in the community.  I have always said that even if I am not an MVP I will continue to go out and foster community wherever I can, and I will, but not just yet.

    I want to thank the Northwest Arkansas Technical community, hey they have to put up with me Winking smile.  They have been a great source of ideas and inspiration and I would go to bat for any of you.  Thanks for listening to me rant, and for sometimes telling me to shut up Smile.

    Thanks again to Microsoft for the honor of being an MVP and thanks to the community for helping me get there.

    Calendar

    <<  April 2024  >>
    MonTueWedThuFriSatSun
    25262728293031
    1234567
    891011121314
    15161718192021
    22232425262728
    293012345

    View posts in large calendar

    Widget Category list not found.

    Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))X

    Tag cloud

      Widget Month List not found.

      Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))X

      Widget AuthorList not found.

      Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))X

      Widget TextBox not found.

      Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))X