اشتراک‌ها
NET. چه چیزی است؟ پلتفرم یا فریم ورک؟

You'll often hear the terms framework and platform used interchangeably. This can be very confusing. You'll hear that .NET Core is a platform. Then you'll read that .NET Core is cross-platform. Next, you'll learn that .NET Core is a framework. And it doesn't help that framework is part of the name of the original full .NET Framework.

In this post, I explain the difference between frameworks and platforms and explain why sometimes you'll see .NET being referred to as a framework and other times see it referred to as a platform. 

NET. چه چیزی است؟ پلتفرم یا فریم ورک؟
اشتراک‌ها
امکانات جدید visual studio 2015 update 2

In Visual Studio 2015 Update 2, you’ll notice that we’ve added some enhancements to previous features as well as added some new refactorings. The team focused on improving developer productivity by cutting down time, mouse-clicks, and keystrokes to make the actions you perform every day more efficient 

امکانات جدید visual studio 2015 update 2
اشتراک‌ها
0.Visual Studio 2017 15.9 منتشر شد

Summary of Notable New Features in 15.9

Top Issues Fixed in 15.9

0.Visual Studio 2017 15.9 منتشر شد
اشتراک‌ها
Workrave؛ برنامه‌ای جهت یادآوری نیاز به کمی استراحت!

Take a break and relax

Workrave is a free program that assists in the recovery and prevention of Repetitive Strain Injury (RSI). It monitors your keyboard and mouse usage and using this information, it frequently alerts you to take microbreaks, rest breaks and restricts you to your daily computer usage. 

Workrave؛ برنامه‌ای جهت یادآوری نیاز به کمی استراحت!
اشتراک‌ها
مقایسۀ NoSQL و SQL

SQL Server and relational databases (RDBMS) have been the go-to databases for over 20 years. However, the increased need to process higher volumes and varieties of data at a rapid rate has altered the nature of data storage needs for application developers

  

مقایسۀ NoSQL و SQL
اشتراک‌ها
کتابخانه emergence.js

Emergence.js is a lightweight, high-performance JS plugin for detecting and manipulating elements in the browser. Demo

  • Dependancy-free
  • IE8+ and all modern browsers
  • 1KB minified and gzipped
npm install emergence.js
bower install emergence.js
کتابخانه emergence.js
اشتراک‌ها
دریافت Visual Studio Community 2017 RC

Visual Studio Community 2017 RC is a free, fully featured, and extensible IDE for individual developers, open source projects, education and academic research. You can create applications for Android, iOS, Windows and the web. Integrated Azure tools make it e 

دریافت Visual Studio Community 2017 RC
اشتراک‌ها
کتابخانه jquery.enhsplitter
jquery.enhsplitter is a plugin to generate sliding splitters on your page. Useful for separating content, emulating the look of frames, collapsable tool windows, and more. Completely customizable look and feel, and touchscreen friendly.  Demo
کتابخانه jquery.enhsplitter
نظرات مطالب
EF Code First #2
سلام جناب نصیری
ممنون از پاسخگوئیتون
مواردی رو که شما فرمودید انجام دادم( رشته اتصالی به بانک اطلاعاتی در web.config از قبل درست بود) با سه حالت مختلف 
1- فقط از متد Database.SetInitializer در روال Application_Start  استفاده کردم که با خطای زیر مواجه شدم 
GenericArguments[0], 'DataLayer.TestContext', on
'System.Data.Entity.IDatabaseInitializer`1[TContext]' violates the 
constraint of type parameter 'TContext'.
2- از متد Database.SetInitializer صرف نظر کردم و موارد زیر رو به  web.config اضافه کردم
<contexts>
    <context type=" DataLayer.TestContext, DataLayer">
      <databaseInitializer type="System.Data.Entity.DropCreateDatabaseAlways`1[
                           [DataLayer.TestContext, DataLayer]], EntityFramework" />
    </context>
  </contexts>
که با خطای زیر مواجه شدم
An error occurred during the processing of a configuration file required to service this request.
Please review the specific error details below and modify your configuration file appropriately
3- فقط از <appSettings>  استفاده کردم که بدون هیچ خطا و هشداری بود ولی باز هم دیتابیس تشکیل نشد.  
با تشکر