Application Block Usage

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jeff S

    Application Block Usage

    Regarding the Application Blocks provided by Microsoft; are any of you using
    them in production systems?

    If no, why?

    If yes, what has been your experience?... would you recommend for or against
    their use?

    Here's the Application Blocks I'm referring to:
    Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.


    Thanks!


  • Steven Nagy

    #2
    Re: Application Block Usage

    I asked the same question not that long ago, here's the thread:



    Watch for line wrap

    Comment

    • Jeff S

      #3
      Re: Application Block Usage

      Thanks! Maybe we'll get some addional feedback. Also, I just came across
      this resource that might be valuable for anyone else wanting more
      information about the Application Blocks and MS Patterns and Practices:

      Browse thousands of hours of video content from Microsoft. On-demand video, certification prep, past Microsoft events, and recurring series.


      -Jeff

      "Steven Nagy" <learndotnet@ho tmail.com> wrote in message
      news:1139465611 .904762.154210@ g44g2000cwa.goo glegroups.com.. .[color=blue]
      >I asked the same question not that long ago, here's the thread:
      >
      > http://groups.google.com.au/group/mi...f9302a18b5b5b0
      >
      > Watch for line wrap
      >[/color]


      Comment

      • sloan

        #4
        Re: Application Block Usage

        The EnterpriseLibra ry Data Access (1.1 and 2.0) are very good, IMHO.

        They also force you to create a correct DataTier object.

        Your DataTier object should return

        DataSets
        IDataReaders
        Scalars
        void (nothing)

        back to your business layer.

        When updating data, you'll usually send data into the DataTier object, and
        get null back. (aka, you just want to know it worked..)

        Remember, the EntLib does NOT replace your application's datatier....its a
        helper for it.

        ...


        "Jeff S" <A@B.COM> wrote in message
        news:umITLuTLGH A.3960@TK2MSFTN GP09.phx.gbl...[color=blue]
        > Regarding the Application Blocks provided by Microsoft; are any of you[/color]
        using[color=blue]
        > them in production systems?
        >
        > If no, why?
        >
        > If yes, what has been your experience?... would you recommend for or[/color]
        against[color=blue]
        > their use?
        >
        > Here's the Application Blocks I'm referring to:
        > http://msdn.microsoft.com/practices/...s/default.aspx
        >
        > Thanks!
        >
        >[/color]


        Comment

        Working...