Tag Archives: linq

IQueryable: Performance boost over remote Data Access
Welcome to CodeSpread!If we also follow the inheritance principle like OOPS programming, we need to extend our previous discussion “IEnumerable: Power behind Collections”. So this will lead us to write something about IQueryable. What is an IQueryable Interface? We can define it as functionality attached to an element which is used to evaluate queries against…..
C#: Anonymous Type is not anonymous!
Why Anonymous Type? Anonymous types provide you the ease of having set of properties (Read only) into a single object without knowing the type. It’s the job of compiler to generate the type information. Anonymous types can be created by using the keyword new. Say: var test = new { Name = “Jackie”, ID =…..

C#: Useful JSON in .Net
Why JSON? All web applications revolve around large chunk of data and availability of that data to our application is of utmost importance. To do that, we have options like fetch data from database and sometimes from XMLs. As a result of which we end up hitting DB/File system several times and ultimately compromises with…..









