فصل یک – کد تمیز به دو دلیل شما در حال خواندن این کتاب هستید: یک: یک برنامهنویس هستید. دو: میخواهید برنامهنویس بهتری شوید. خوب است. ما به برنامهنویسهای بهتر نیاز داریم. در کتاب پیشرو، میخواهیم راجع به خوب برنامه نوشتن صحبت کنیم. این... Read more
مقدمه کدامیک از این تصاویر شما را در کدنویسی نشان میدهد؟ کدامیک شما را در تیم یا شرکت نشان میدهد؟ چرا ما در آن اتاق هستیم؟ آیا این فقط یک بررسی ساده کد است یا یک سری مشکلات را مدت کمی بعد از اجرا پیدا خواهیم کرد؟ آیا به خاطر وحشت از خراب شدن ک... Read more
replace row in datagridview with save changes in this method we can replace and move data grid view cells and dynamically save it and load settings on views . private void CacheDisplayOrder() { IsolatedStorageFile isoFile = IsolatedStorageFile.G... Read more
Entity Framework – DbContext The Entity Framework enables you to query, insert, update, and delete data, using Common Language Runtime (CLR) objects which is known as entities. The Entity Framework maps the entities and relationships that... Read more
Entity Framework – Data Model The Entity Data Model (EDM) is an extended version of the Entity-Relationship model which specifies the conceptual model of the data using various modelling technique. It also refers to a set of concepts that... Read more
Entity Framework – Database Setup In this tutorial, we will be using a simple University database. A University database can be much more complex as a whole but for demo and learning purpose, we are using the simplest form of this database... Read more
how to Backup and Restore Sql Database in C# you can easily backup and restore your database with c# like this . private void btnBackup_Click(object sender, EventArgs e) { SaveFileDialog sv = new SaveFileDialog(); sv.Filter = “Text files (... Read more
Entity Framework – Environment Setup What’s New in Entity Framework 6? Framework has a complex API that lets you have granular control over everything from its modeling to its runtime behavior. Part of Entity Framework 5 lives inside of .N... Read more
Entity Framework – Architecture The architecture of Entity Framework, from the bottom up, consists of the following − Data Providers These are source specific providers, which abstract the ADO.NET interfaces to connect to the database when... Read more
Entity Framework – Overview What is Entity Framework? Entity Framework was first released in 2008, Microsoft’s primary means of interacting between .NET applications and relational databases. Entity Framework is an Object Relational... Read more