LINQ Partitioning Operators with example
The partitioning query operators take an input sequence and partition it, or “return a chunk” in the output sequence. One use of these operators is to break up a larger sequence into “pages,” for example, paging though ten results at a time in a user interface. 1....
SelectMany query operator in linq
SelectMany query operator produces a variable number of output elements for each input element. In simple words if any collection have collection as an its element then using selectmany we can read that child connection item. Example using System; using...
triggers in sql server
create trigger getid on [login] after insert as select @@identity as mynewid insert into [Login](username ,password) values('aabc','bbcc') disable trigger getid on [login] enable trigger getid on [login] create trigger trig_uppercase on [state] after insert ,update as...
CSS3 2D transformation with javascript example
As we know that CSS3 support 2d and 3d animation or tranformation support. In this blog I am writing methods and code for CSS3 2d transformation. CSS3 transforms allow you to translate, rotate, scale, and skew elements.A transformation is an effect that lets an...