By tag: Database
0
kicks
Repository pattern with Entity Framework Code-First in Composable Serv
Implement Repository, UnitOfWork with Audit support in Composable Service End
0
kicks
Design Data Access With Entity Framework Code-First In Composable Serv
Implement Repository, UnitOfWork and Audit Log in Composable Service End
0
kicks
Entity framework and pessimistic concurrency
Entity framework supports optimistic concurrency out of the box but using pessimistic concurrency requires manual implementation. This article explains why simple solutions don't work and provides a working solution.
0
kicks
Data Alerting in SQL Server 2012
You can create a data alert to email notification in SQL Server 2012 reporting services. This data alert sends e-mail notification when only when specific conditions in the data are true at a schedule time. This Date Alerting feature is available only when reporting services runs in sharepoint integ...
0
kicks
Entity Data Model: The version of SQL Server in use does not support
Entity Data Model: The version of SQL Server in use does not support datatype ‘datetime'
0
kicks
SSIS Logging in SQL Server 2012
Enabling SSIS logging is a tedious process in earlier versions. Integration Services Packages has the two options to log the information during the execution, one option is configure the log providers in each package and associate them to executables within the package. Second option is to use SQL s...
0
kicks
Entity Framework and AutoDetectChanges
AutoDetectChanges is one of the performance tuning options inside Entity Framework. This article explores how AutoDetectChanges effects performance and how and when it can be used with Entity Framework.
0
kicks
Entity Framework Navigation Properties with Code First
An explanation of how navigation properties in Entity Framework can be used. It gives basic examples of what you get by default and the additional configuration you can do with the model builder.
0
kicks
Entity Framework Performance Cheat Sheet
I recently did a presentation on performance with Entity Framework. This article presents a set of tips for how you can get the best from EF.
0
kicks
SisoDb and SQL Server Express 2012, LocalDB
This is a verry short introduction to SQL Server Express 2012, LocalDB, and I’ll show you how to use it in conjunction with SisoDb (Simple, Structure, Oriented DB). I'll be using Chocolatey to install it.
0
kicks
SQL Server Scripts: Get All Nested Stored Procedures List
A stored procedure can be called from another stored procedure as nested stored procedure. Recently on production server, we were asked for all stored procedures in which other stored procedures are called as nested. Here is simple script.
0
kicks
SQL Server: Restrict Login from Valid Machine IPs Only
How to restrict VALID database users from INVALID machine IPs. Simple way to protect your SQL Server instance
0
kicks
Deep Fried Bytes Episode 89: What is the Big Deal about Big Data?
In this episode, Woody sits down with Andrew Brust to discuss another “big” technology for developers and IT professionals: Big Data. Woody and Andrew talk about what Big Data is, who is using it, what tools are available and finally how we has technologists can use this for our products and service...
0
kicks
Implementing Repository Pattern with EF4 POCO support
About two years ago have written a post and an article in codeproject about the repository pattern implementation with EF V1. After that I got a lot of requests in my articles to make it compatible for EF4 POCO support. So here I am going to make that. In this implementation of repository, I am goin...