ramiljoaquin

Stories submitted by ramiljoaquin

NHibernate Course-<component/>(ayende.com)

submitted by ramiljoaquinramiljoaquin(465) 1 year, 1 month ago

<component/> is an interesting feature of NHibernate, which map more or less directly into the notion of a Value Type in DDD. This is a way to create an object model with higher granularity than the physical data model. read more...

add a comment |category: |Views: 7

tags: another

A Great Buried Sample in Dynamic Data Preview 4 – Dynamic Data Futures(csharpbits.notaclue.net)

submitted by ramiljoaquinramiljoaquin(465) 2 years, 10 months ago

Dynamic Data read more...

add a comment |category: |Views: 14

tags: another

jQuery Selectors - Looks just like CSS (blog.dmbcllc.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 6 months ago

Last week we took a look at the jQuery selector syntax which allows us to select elements by their ID, class name or tag name. read more...

add a comment |category: |Views: 18

tags: another

Why The Web Application Installer Rocks(blog.wekeroad.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

Scott beat me to it. I had been waiting a bit to talk about the new Web Application Installer from the IIS team but got scooped. This isn't the same thing as the Web Platform Installer (which Scott talked about here) - it's a whole different beast that actually installs applications on your machine and configures them (read more from Scott's post). read more...

add a comment |category: |Views: 10

tags: another

Upload T-SQL and execute at your hosting provider using an ASP.NET pag(developercontainer.blogspot.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

With this approach, you can use the Database Publishing Wizard to generate a T-SQL file from your local database. Then, you can upload the script to your hosting provider, and use the sample ASP.NET page provided to execute the code below. read more...

add a comment |category: |Views: 7

tags: another

ASP .NET Dynamic Data(myvbprof.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

This tutorial covers an overview to ASP.NET Dynamic Data features. Dynamic Data is new to the .NET Framework 3.5 (SP1) and provides a way to easily creature, modify, and maintain a data driven website. Microsoft describes Dynamic Data as: read more...

add a comment |category: |Views: 18

tags: another

Don’t run production ASP.NET Applications with debug=”true” enabled (weblogs.asp.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

One of the things you want to avoid when deploying an ASP.NET application into production is to accidentally (or deliberately) leave the <compilation debug=”true”/> switch on within the application’s web.config file. read more...

2 comments |category: |Views: 22

tags: another

Dynamic Data – Custom Metadata Providers(csharpbits.notaclue.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

This is really just an addition to Matt Berseth's article Dynamic Data And Custom Metadata Providers from August 24, 2008, all I wanted to do was add the same features to the Table/Class not just the Columns/Properties. So you can see the full explanation over at Matt Berseth's blog. So here are the listings: read more...

add a comment |category: |Views: 46

tags: another

ASP.NET Dynamic Data Links(csharpbits.notaclue.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

This is really just an addition to Matt Berseth's article Dynamic Data And Custom Metadata Providers from August 24, 2008, all I wanted to do was add the same features to the Table/Class not just the Columns/Properties. So you can see the full explanation over at Matt Berseth's blog. So here are the listings: read more...

add a comment |category: |Views: 4

tags: another

Video: Using LINQ with ASP.NET in VS "Orcas" (Part 1) (weblogs.asp.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

One of my goals this year is to use video more with my blog. My theory is that video is often a better medium than text to walkthrough how something works, and can also help you avoid the tedium of reading though some of my really long blog posts... :-) read more...

add a comment |category: |Views: 13

tags: another

October 2nd Links: ASP.NET, ASP.NET MVC, ASP.NET Dynamic Data(weblogs.asp.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

Here is the latest in my link-listing series. Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. read more...

1 comment |category: |Views: 209

tags: another

jQuery and Visual Studio(blog.wekeroad.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 7 months ago

jQuery is a lightweight open source JavaScript library (only 15kb in size) that in a relatively short span of time has become one of the most popular read more...

add a comment |category: |Views: 10

tags: another

Why Polymorphism is so important? What is it’s role in OO programming?(programmersheaven.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 9 months ago

Polymorphism gives us the ultimate flexibility in extensibility which is a basis of OO programming. Understanding Polymorphism is crucial to any OO language professional , be it a Java , C++ or C# programmer. read more...

add a comment |category: |Views: 20

tags: another

Building Custom Build Providers with ASP.NET 2.0 and VS 2005 (weblogs.asp.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 9 months ago

One of the cool new features in ASP.NET 2.0 is support for what we call "build providers". These are providers that can plug into the ASP.NET compilation system and provide custom compilation support for file-types. ASP.NET ships with a number of built-in providers in the box -- including support for .wsdl and .xsd files. read more...

add a comment |category: |Views: 8

tags: another

Web Services Contract First: Drop Schema in app_code with a Custom Bui(blogs.msdn.com)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 9 months ago

Web applications in Visual Studio 2005 allow you to drop items in the app_code directory in your project and classes are compiled in the background for you. For instance, drop a WSDL file in there and you get a proxy for the web service, drop a schema and you get a DataSet. I wanted to drop a schema in app_code and get an XML serializable class. read more...

add a comment |category: |Views: 5

tags: another

[.NET 2.0] Playing Around with BuildProvider and CodeDom(weblogs.asp.net)

submitted by ramiljoaquinramiljoaquin(465) 3 years, 9 months ago

This is old news for some of you, but I've never looked at the ASP.NET buildprovider functionality in more detail until tonight, and it is pretty cool. The buildprovider can generate/build code from certain file types you drop into an ASP.NET project and I'm sure you're familiar with .xsd files and how VS.NET generates classes from those. The cool thing is that you can write your own buildprovider and generate code yourself. read more...

add a comment |category: |Views: 15

tags: another