nareshsh

Stories kicked by nareshsh

Optimize LINQ to SQL with PLINQO Futures(plinqo.com)

submitted by pwelter34pwelter34(179) 2 years, 4 months ago

PLINQO future queries are a way to defer query execution until it is needed. The difference between standard IQueryable deferred queries and future queries is that the future queries are batched up and executed in a single round trip to the database. read more...

add a comment |category: |Views: 305

tags: another

Code Access Security - Implementing publishers based security(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 5 months ago

This article explains how to implement publishers based security using digital certificates. read more...

add a comment |category: |Views: 8

tags: another

Enhancements in Assemblies and Versioning in Visual Studio 2005(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 5 months ago

The article discusses a couple of features introduced for assembly and versioning in Visual Studio 2005 such as referencing assemblies, registering assemblies to GAC, digital signing and friend assemblies. read more...

1 comment |category: |Views: 3

tags: another

C# Friendly Assemblies: Looking at building Truly Reusable Components(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 5 months ago

This article discusses how we can hide our base class implementation and require referencing of our objects through their interfaces. This keeps our own projects loosely coupled and also allows us to publish our assemblies as truly reusable components because they are 100% “Black box”. read more...

add a comment |category: |Views: 9

tags: another

Capturing File Information(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 5 months ago

This article describes a simple approach to capturing and displaying file and file version information. read more...

add a comment |category: |Views: 2

tags: another

Introduction to the Assembly Concept(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 6 months ago

This is a brief introduction to the assembly concept, it shows importants issues for a programmer to know. read more...

add a comment |category: |Views: 5

tags: another

Dynamic building and execution of assembly using CodeDome & Reflection(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 6 months ago

This article shows how to enter code, compile it , execute it and apart from that access code and data member from the main or other referenced assembly during runtime. read more...

add a comment |category: |Views: 8

tags: another

Access AssemblyInfo file and get product informations(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 6 months ago

This article tells you that .Net have the assemblyInfo file for every project and also have custom attributes to access the asseblyinfo file attributes. read more...

add a comment |category: |Views: 3

tags: another

Working with Parameter Fields in Crystal Reports(c-sharpcorner.com)

submitted by saumya321saumya321(775) 2 years, 6 months ago

This article is intended to illustrate how to use Parameter Fields in Crystal Reports. Parameter fields enable the creation of reports that could be used in a variety of ways, prompting the user for all kinds of information specifically for record selection and report titles. read more...

add a comment |category: |Views: 18

tags: another

How to pass SQL query parameters to Crystal Reports using Oracle(c-sharpcorner.com)

submitted by saumya321saumya321(775) 2 years, 6 months ago

This article shows how to pass SQL query parameters to Crystal Reports using Oracle. read more...

add a comment |category: |Views: 12

tags: another

XSD XML based Crystal Report Data Source(c-sharpcorner.com)

submitted by saumya321saumya321(775) 2 years, 6 months ago

This article is intended to illustrate the benefits of using disconnected connection in crystal reports. read more...

add a comment |category: |Views: 29

tags: another

Crystal and Reporting Services FAQ - Part 2(c-sharpcorner.com)

submitted by saumya321saumya321(775) 2 years, 6 months ago

This article is the continuation of Crystal and Reporting Services FAQ - Part 1. This FAQ will give you a quick start for two giant reports on Crystal and Reporting Services. read more...

add a comment |category: |Views: 2

tags: another

Text Sharp - Visual Studio 2010 text clarity tuner(svprogramming.net)

submitted by SergeyVlasovSergeyVlasov(173) 2 years, 6 months ago

Text Sharp extension allows you to adjust text clarity in Visual Studio 2010 Beta 2 IDE (Professional, Premium and Ultimate). read more...

add a comment |category: |Views: 13

tags: another

System.Reactive or the .NET Reactive Extensions (Rx) – Concepts and Fi(amazedsaint.blogspot.com)

submitted by amazedsaintamazedsaint(835) 2 years, 6 months ago

Consider how you handle a simple MouseMove operation in .NET using an event handler. Let us take a step back, and examine this a bit closer - The mouse cursor location’s value is changing over a period of time, and an event notifies you about that. You may see the data we receive from these events as pieces of data that you (the target) receive from a source over a period of time – a sequence. Also, you may instantly notice that the same is happening when you iterate over a collection, probably using a for loop. In that case too, you are receiving values from a source over a period of time. Or, in both cases, the target is receiving the pieces of data from a source over a period of time through some signal.... read more...

add a comment |category: |Views: 52

tags: another

The Basics of .NET Framework Interoperability(c-sharpcorner.com)

submitted by maheshchamaheshcha(1620) 2 years, 6 months ago

The System.Runtime.InteropServices namespace defines classes where some of which define methods that enable managed code to call native code. This is accomplished via an internal call and is called the Platform Invoke service. read more...

add a comment |category: |Views: 243

tags: another

Part III: Step by step procedure of how to install an assembly(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 6 months ago

This article is as in the part I and II describes the maner of how to install an assembly. read more...

add a comment |category: |Views: 1

tags: another