TareqOmar
Name: TareqOmar
Score: 9,755.92
Last Seen: 1051 days, 4 hours, 42 minutes ago
Member Since: 29 January, 2009
DotNetShoutout
atom rss
7
Shouts

system.data.objects dev guy : Cascade Delete and 1-to-1 (or 1-to-0..1) Relationships

published 1196 days, 5 hours, 18 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1196 days, 21 hours, 54 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:32:51 PM GMT
Cascade Delete and 1-to-1 (or 1-to-0..1) Relationships Here’s another episode in my ongoing mission to help folks be successful using the Entity Framework, as well as to learn more about how folks use the Entity Framework so that each release will be better than the last.  Today’s task: Using cascade delete with 1-to-1 relationships.The problem I got an email from a customer asking for help with getting cascade delete to work properly in his application.  After going through the normal obvious potenti... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
tags: EF, entityframework4, EF4, entityframework
5
Shouts

Defining Constraints in an EF4 model that don’t exist in the database : Don't Be Iffy

published 1196 days, 5 hours, 18 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1196 days, 22 hours, 10 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:16:49 PM GMT
In the first version of Entity Framework, if you wanted to create a PK/FK association between entities where there was no such constraint defined in the database you have to manually edit the SSDL (and lose that edit if you update the model from db). Why would you want to do this? The typical use case is when you are stuck with a database that is poorly designed and you are not allowed to make changes to it. In Entity Framework 4, as long as the Primary Keys are defined in the db (otherwise the entitie... (more)
category: How To | clicked: 0 | comment | | source: thedatafarm.com
tags: EF4, entityframework
9
Shouts

Scott Hanselman - Back to Basics: C# 4 method overloading and dynamic types

published 1196 days, 5 hours, 18 minutes ago posted by jantujantu 1198 days, 1 hour, 54 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Saturday, February 13, 2010 4:32:46 PM GMT
"I'm too lazy to tell you the type of this variable, so you figure it out, compiler."However, it's more useful than just promoting terseness or laziness:var i = 10; // implicitly typed int i = 10; //explicitly typed Although var is a great way to start arguments about coding standards at your work, there are times when it is required around anonymous types. Here's an example from MSDN:/ Example: var is required because// the ... (more)
category: How To | clicked: 0 | comment | | source: www.hanselman.com
tags: Programming, VS2010, Learning .NET, Back to Basics
8
Shouts

Displaying Relative Time (C#)

published 1195 days, 7 hours, 8 minutes ago posted by BlackWaspBlackWasp 1197 days, 5 hours, 57 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Sunday, February 14, 2010 12:29:54 PM GMT
When developing software that works with time stamped information, it is common to show the date and time at which an item was created or last updated. A user-friendly alternative is to display a relative time, such as "Two Hours Ago". (more)
category: UX | clicked: 4 | comment | | source: www.blackwasp.co.uk
10
Shouts

Innovation Showcase : Confused about Windows Azure Billing?

published 1196 days, 5 hours, 18 minutes ago posted by wzackwzack 1196 days, 21 hours, 21 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:05:16 PM GMT
Confused about Windows Azure Billing? The Windows Azure Platform is based on an Operational Expenditure (OPEX) model as opposed to the on-premise Capital Expenditure (CAPEX) model that most of us are used to. This means that means that, while you pay nothing up front for using Azure storage and computational resources, you do have to understand how your use of those resources will be billed to you. This blog post does a pretty good job of explaining how this works. If you want to expl... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
11
Shouts

Innovation Showcase : Monitoring Applications in Windows Azure

published 1196 days, 5 hours, 18 minutes ago posted by wzackwzack 1196 days, 21 hours, 4 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:22:26 PM GMT
Monitoring Applications in Windows Azure Hedgehog’s Cloud Application Monitor was created to fill a gap in creating application for the Azure Cloud. There is no easy way to monitor applications running in the cloud, and no quickly accessible repository of historical data. The Cloud Application Monitor downloads diagnostic information from the cloud and stores it in a local SQL server database. Hedgehog has posted this application on Codeplex as a free download. (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
6
Shouts

HighOnCoding: Creating WPF Live Counter as Background

published 1196 days, 5 hours, 18 minutes ago posted by KhaledKhaled 1197 days, 9 hours, 32 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:54:52 AM GMT
In the last article we demonstrated how to create a character counter for the RichTextBox control by making a custom SharpRichTextBox control. In this article we will demonstrate how to display the live character count as the background of the SharpRichTextBox control. (more)
category: How To | clicked: 0 | comment | | source: www.highoncoding.com
9
Shouts

Extreme ASP.NET: Looking Ahead to ASP.NET 4.0

published 1194 days, 4 hours, 35 minutes ago posted by KhaledKhaled 1197 days, 4 hours, 5 minutes ago
Wednesday, February 17, 2010 1:51:42 PM GMT Sunday, February 14, 2010 2:21:50 PM GMT
I don’t have the space to cover every addition to ASP.NET in one article, as there are numerous improvements to both frameworks and the underlying runtime. Instead, I’ll highlight what I think are the important new features for Web Forms and MVC. (more)
category: Web Dev | clicked: 0 | comment | | source: msdn.microsoft.com
8
Shouts

How to use Validation Controls in ASP.NET

published 1195 days, 7 hours, 8 minutes ago posted by KhaledKhaled 1197 days, 9 hours, 19 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Sunday, February 14, 2010 9:08:02 AM GMT
Using Validation Controls is faster than doing validation on the server side. Please note that there are some cases where you can’t set a rule. In that Case you will add those types of validation to your Business Logic Layer, when you validate in your Class Library before sending the Data to the Data Layer to be executed. There is only one reason why Microsoft created Validation controls. The Reason is simple “Never Trust the user input” (more)
category: Web Dev | clicked: 0 | comment | | source: www.dotnetfunda.com
7
Shouts

HighOnCoding: Get high on ASP.NET articles, videos, podcasts and more!

published 1196 days, 5 hours, 18 minutes ago posted by KhaledKhaled 1197 days, 9 hours, 25 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:01:43 AM GMT
When using model binding in an ASP.NET MVC application we make sure that our user interface elements matches with the domain object. But sometimes this is not possible as user interface contains elements which does not make any sense on the domain objects. In this article we will demonstrate how to implement ViewModels which closely reflects the elements on the interface (more)
category: Web Dev | clicked: 0 | comment | | source: www.highoncoding.com
7
Shouts

.NET - Server Side Validation With ASP.NET MVC And Data Annotations

published 1196 days, 5 hours, 18 minutes ago posted by KhaledKhaled 1197 days, 1 hour, 52 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 4:35:05 PM GMT
When you’re using ASP.NET MVC, there’s no validation controls for you compared to ASP.NET WebForms. It is always important to validate data on the server as well as the client (more)
category: Web Dev | clicked: 0 | comment | | source: www.dotnetcurry.com
11
Shouts

Visual Studio 2010 RC is available

published 1199 days, 6 hours, 34 minutes ago posted by gpeipmangpeipman 1202 days, 8 hours, 52 minutes ago
Friday, February 12, 2010 11:52:09 AM GMT Tuesday, February 09, 2010 9:34:44 AM GMT
VS2010 RC is out now and available for MSDN users since now. Other guys have to wait until tomorrow when VS2010 RC is made publically available. Reading first news I discovered that most important thing is hardly improved performance of VS2010 RC IDE. All your feedback is welcome to VS2010 RC Connect site. (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: Visual Studio 2010, .NET Framework 4.0
6
Shouts

Using .NET 3.5 (CLR 2.0) DLL inside Visual Studio 2010 for a .NET 4.0 Project/Application

published 1200 days, 6 hours, 56 minutes ago posted by http://krishnabhargav.blogspot.com/http://krishnabhargav.blogspot.com/ 1200 days, 15 hours ago
Thursday, February 11, 2010 11:30:56 AM GMT Thursday, February 11, 2010 3:26:43 AM GMT
When you first create a .NET 4.0 project inside VS 2010 and add reference to a .NET 3.5 DLL (say log4net or Rhino.Mocks), the project tends to not build. You can get errors as shown below. It might appear to be a CLR version issue – unable to run 2.0 DLL inside a 4.0 App Domain. And i thought that is what it was until now. You can get over this :) By default, VS 2010 creates the projects with Target Framework on the properties set to “.NET Framework 4 Client Profile”. You would have to change that... (more)
category: How To | clicked: 7 | comment | | source: krishnabhargav.blogspot.com
tags: Migrating from Visual Studio 2008, VS2010
17
Shouts

Innovation Showcase : A Tour Through the Parallel Programming Samples for .NET 4

published 1200 days, 6 hours, 56 minutes ago posted by jbarnesjbarnes 1202 days, 19 hours, 50 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Monday, February 08, 2010 10:36:22 PM GMT
08 February 2010 A Tour Through the Parallel Programming Samples for .NET 4 Now that the “Release Candidate” of Visual Studio 2010 and the NET 4.0 Framework is just around the corner – it’s time to get with the new economy and see how you can “Do More With Less” with the Parallel Extensions for the .NET Framework.  The Parallel Extensions team has recently released a plethora of samples on the MSDN Code Gallery that highlight aspects of the .NET Framework 4 that help with writing scalable and effi... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
6
Shouts

Writing object to object mapper: moving to generics

published 1200 days, 6 hours, 56 minutes ago posted by gpeipmangpeipman 1200 days, 18 hours, 4 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Thursday, February 11, 2010 12:22:30 AM GMT
In my previous posting about object to object mapping Writing object to object mapper: first implementations I wrote first and simple implementations of mapper. These implementations based heavily on reflection. In this posting I will boost up mapper performance by using generics. (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, lcg, object to object mapping, Performance
8
Shouts

Connected Show #24 - Addicted to Spring.NET

published 1200 days, 6 hours, 56 minutes ago posted by plaudatiplaudati 1200 days, 21 hours, 34 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Wednesday, February 10, 2010 8:52:09 PM GMT
In this episode, guest Mark Pollack joins Peter to discuss the Spring.NET application framework. In a world driven by POJOs and POCOs, Mark tells us about how he originally created Spring.NET for a team of Java developers to enable a similar development experience in .NET. Since then, the framework has grown from a simple IoC container to a more powerful framework capable of separating cross-cutting concerns from business application logic. Also, Dmitry and Peter discuss Snoop, FastCGI 1.5, Windows Mob... (more)
category: Podcast | clicked: 1 | comment | | source: www.connectedshow.com
tags: Windows Mobile, Spring.NET, PHP, FastCGI, Azure
7
Shouts

Video and Q&As from my Top 10 Treats in EF4 WebCast : Don't Be Iffy

published 1199 days, 6 hours, 34 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1201 days, 7 hours, 11 minutes ago
Friday, February 12, 2010 11:52:09 AM GMT Wednesday, February 10, 2010 11:16:03 AM GMT
The video from my webcast, Top 10 Treats in Entity Framework 4 is available on Oreilly’s website: http://www.oreillynet.com/pub/e/1517. I just discovered that WebEx saved the chat window from my O’Reilly webcast last month. So I thought I would pick out the quesitons and answer them here although I did answer some of them at the end of the webcast: Q address NOT Address?? Someone noticed that an entity was named address. The pluralization support in the VS2010 EDM Designer does not fix up bad capitali... (more)
category: Architecture | clicked: 0 | comment | | source: thedatafarm.com
tags: EF4, entityframework
8
Shouts

WCF Data Services Team Blog : Vote for future Data Services Features

published 1200 days, 6 hours, 56 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1201 days, 7 hours, 10 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Wednesday, February 10, 2010 11:16:54 AM GMT
Vote for future Data Services FeaturesPublished 09 February 10 10:02 AM | dpblogs  Now that our current releases are winding down we’ve begun shifting some of our focus to planning for the next round.  To help us prioritize our future work we’d like to hear from you.  To make it easy to submit feedback directly to our teams (Entity Framework, WCF Data Services, etc) we’ve created a Connect site.  The site enables you to easily file bugs, request a feature or vote up/down features or bugs previously en... (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.msdn.com
tags: Data Services, DataServices
7
Shouts

Using gacutil.exe and Reflection to generate the Exceptions Cheat Sheet

published 1200 days, 6 hours, 56 minutes ago posted by MikesdotnettingMikesdotnetting 1201 days, 10 hours, 57 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Wednesday, February 10, 2010 7:30:01 AM GMT
Using gacutil.exe and Reflection to generate the Exceptions Cheat Sheet   The most recent addition to my Cheat Sheets features details of all the Exceptions that can be found in the most commonly used assemblies within ASP.NET development. Compiling this information was an interesting challenge. I could have simply copy-pasted from MSDN, but that would have been extremely tedious. Instead, I ended up with a blend of Linq to XML, Reflection, a dash of Regex and the Global Assembly Cache Tool - gacut... (more)
category: Web Dev | clicked: 0 | comment | | source: www.mikesdotnetting.com
tags: asp net
8
Shouts

DimeCasts.Net Details for # 162 - Learning how to use a Web Cam with Silverlight

published 1200 days, 6 hours, 56 minutes ago posted by derikwhittakerderikwhittaker 1201 days, 4 hours, 32 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Wednesday, February 10, 2010 1:54:09 PM GMT
Taking a look at how you can setup and use a web camera in Silverlight. We will walk you though how to capture both the raw video as well as how to take snap shots of the video. (more)
category: Screencast | clicked: 0 | comment | | source: www.dimecasts.net
tags: Silverlight, DimeCasts.net
Previous 1 2 ... 9 10 11 12 13 14 15 16 17 18 ... 38 39 Next