Questions tagged [ado.net]

ADO.Net is a popular tool among developers for interacting with relational databases, allowing them to retrieve and update data. However, it's not limited to just relational sources - it can also work with non-relational data. This versatile technology is integrated into the Microsoft .NET Framework's base class library.

Attempting to showcase a list of 4 concatenated items in a dropdown menu sourced from the database

I am attempting to concatenate and display 4 items in a dropdown list using AJAX. For example, the value in the dropdown list should appear as (127, CoilWt, 1, KGS) from the database. In the database, I am selecting select CODE_VALUE, CODE_DESC, CODE_SUB ...

Obtain input from request payload in WCF/ADO.NET Data Service

Why are my parameters getting lost when I try to post to an ADO.NET Data Service? This is what my code looks like: [WebInvoke(Method="POST")] public int MyMethod(int foo, string bar) {...} Here's how I'm making the ajax call using prototype.js: var arg ...