Tagged Questions
The objectdatasource tag has no wiki summary.
25
votes
8answers
23k views
Paging & Sorting grids with ASP.Net MVC
I'm new to MVC, and am not following how you'd do paging and sorting on a grid. I'm used to using the asp.Net GridView control with an ObjectDataSource pointed at objects in our business layer - and ...
9
votes
2answers
2k views
SqlDataSource vs ObjectDataSource
If a web page needs some data, why not just have a SQLDataSource call a stored procedure? Why use an ObjectDataSource to call a business object that then calls the stored procedure? I understand that ...
9
votes
2answers
18k views
How do I set up ObjectDataSource select parameters at runtime
I'm trying to add parameters to an objectDataSource at runtime like this:
Parameter objCustomerParameter = new Parameter("CustomerID", DbType.String, customerID);
Parameter ...
8
votes
3answers
154 views
When using an object database, how do you handle significant changes to your object model?
If you use an object database, what happens when you need to change the structure of your object model?
For instance, I'm playing around with the Google App Engine. While I'm developing my app, I've ...
7
votes
4answers
8k views
How to sort using GridView and ObjectDataSource?
I have a GridView with an ObjectDataSource and I want to be able to sort it.
Paging works correctly, however Sorting gives me an exception:
"The GridView 'gridView' fired event Sorting which wasn't ...
5
votes
1answer
244 views
Modifying a collection returned from ObjectDataSource
Some quick background on what I'm working on:
I've got a page with a RadGrid tied to an ObjectDataSource that returns a collection of objects
On that page; I also have two lists; one contains Ids of ...
5
votes
3answers
2k views
GridView bound with with Properties of nested class
I have an object map similar to what's listed below. When I try to bind the properties of NestedClass in a GridView I get the error:
"A field or property with the name 'NestedClass.Name' was not ...
5
votes
3answers
1k views
DataBind and Postback
This is a general how does DataBind work questions...
I have a simple page with a GridView that is bound (in the aspx code) to an ObjectDataSource.
I can look in the Select() function called by the ...
4
votes
2answers
149 views
Object Data Source
I'm creating a gridview using an objectdatasource and it works fine when pulling all records. But when I want to use the selectCountMethod the grid shows no values.
I Step through the code and my ...
4
votes
4answers
6k views
SSRS: Master-detail report with two datasources
I have two local data sources that I can push into the report. Works no problem. But how do I set up the report? One data source contains a list of employees, and info about them. The other contains a ...
4
votes
1answer
3k views
ObjectDataSource Gridview Insert Fails W/ Empty Values Dictionary
I have a gridview to which I have created an Insert Template in the footer row.
I have an ObjectDataSource which is bound to a business object.
I have an OnInserting event handler which never gets ...
4
votes
2answers
2k views
Using generic classes with ObjectDataSource
I have a generic Repository<T> class I want to use with an ObjectDataSource. Repository<T> lives in a separate project called DataAccess. According to this post from the MS newsgroups ...
3
votes
2answers
101 views
Whats the point of the ObjectDataSource
Given that every grid, combobox, checkboxlist and in general multi row control supports binding directly to any IEnumerable what is the point of the ObjectDataSource?
Why would one use it as opposed ...
3
votes
1answer
222 views
Why isn't my SelectCountMethod getting called?
I'm binding a GridView to a ObjectDataSource.
I'm expecting the m_ObjectDataSourceGrid_Selected method to fire twice, once for the Select and again for the Count, but it only fires once.
What's ...
3
votes
4answers
588 views
Storing array of integer values in SQL Server
i want to store an array of integer values in a SQL database table (SQLServer 2005), if possible by using a single column.
The integer array will have a length of 7560 values.
I am using a ...
3
votes
2answers
691 views
ObjectDataSource cannot find type when deployed to SharePoint
I'm receiving the following error when deploying a feature containing ASP.NET pages to our development SharePoint servers:
System.InvalidOperationException: The type specified in the TypeName ...
3
votes
1answer
643 views
ObjectDataSource does not call SelectCount Method
can you please help me to find the problem:
I want to implement simple DataGrid and ObjectDataSource bundle with paging
my .aspx file
<%@ Page Language="C#" AutoEventWireup="true" ...
3
votes
1answer
414 views
Using DataObjectTypeName in DataObjectSource
The functionality I am trying to use is:
- Create a ObjectDataSource for selection and updating controls on a web page (User Control).
- Use the DataObjectTypeName to have an object created that ...
3
votes
1answer
5k views
How to Sort on a GridView using ObjectDataSource with TemplateFields
Background:
I am working with a GridView and an ObjectDataSource. I am implementing Paging and Sorting.
On the ObjectDataSource:
objectDataSource.TypeName = value;
...
3
votes
2answers
480 views
I assume SqlParameter.IsNullable only makes sense when…?
1) When SqlParameter.IsNullable is set to true, received null value is converted to DBNull.Value and sent to database. Thus I would assume setting IsNullable to true only makes sense when GridView’s ...
3
votes
3answers
963 views
How can I catch a exception form ObjectDataSource.Updata()
The exception is throwed by database caused a conflicting by FOREIGN KEY.
3
votes
4answers
7k views
How does FormView EditTemplate update values in ObjectDataSource UpdateParameters under the hood?
I have a FormView bound to an ObjectDataSource.
* ObjectDataSource definition (omitted portion of it for simplicity)*
<asp:ObjectDataSource
ID="odsHousehold"
runat="server"
...
3
votes
2answers
731 views
How do you manually databind complex object to templated control like a row in a gridview?
I am struggling with the databinding syntax here. For example I have a data structure like this -
public class Course{
public string CourseName {get;set;}
public string CourseCode {get;set;}
...
3
votes
1answer
2k views
ObjectDataSource Update method with dynamic parameters
I have this DataTable that has a varying set of columns except for a sequence number.
| Sequence | Value | Tax | Duty | Total |
Any number of columns should be accepted with unique column names.
To ...
2
votes
2answers
78 views
Debugging GridView / ObjectDataSource events
Ahoy!
I am using an ASP.NET GridView control bound to an ObjectDataSource:
<asp:ObjectDataSource ID="Things" runat="server"
TypeName="BLL.Thing"
UpdateMethod="UpdateThing"
...
2
votes
3answers
340 views
Return Custom Object <List T> from Entity framework and assign to Object Data Source
I need some guidance with an issue, I am using Entity Framework 4.0, I have a DAL and BLL and am binding to ObjectDataSource on the page. So I had to write a store proc using PIVOTS and dynamic SQL to ...
2
votes
1answer
53 views
Hiddenfield is null when accessing from FetchCount() on Objectdatasource
I am using subsonic and a gridview with objectdatasource (I have not used an objectdatasource before)
The grid binds just fine, my only problem is that I don't want to keep calling the database to ...
2
votes
1answer
346 views
Problem with Object Data Source in ASP.NET (GetData method)
I want to create a report viewer in ASP.NET that presents to the users their data.
the data for all the users is located in the same table.
for now I created DBDataSet and in the TableAdapter there ...
2
votes
1answer
225 views
Windows Form BindingSource to LinqToSql fails to apply the 'Filter' property
I'm building a Windows Forms application and on many of these forms I use a BindingSource that is linked to a LinqToSql object. I also have a DataGridView which uses the BindingSource. This works ...
2
votes
1answer
151 views
Deleting a record from Gridview with ObjectDataSource
I have a gridview that binds its rows from an objects method:
public DataSet GetObjects()
{
DataSet ds = new DataSet();
DataTable dt = new DataTable();
var source = from p in CommentsList
...
2
votes
3answers
253 views
Cancel a Gridview edit during the ObjectDataSource updated event
In my Asp.net web page, I've got a GridView control that is data bound to an ObjectDataSource. The user can edit row directly in the GridView. There are times when the update fails validation. When ...
2
votes
1answer
149 views
Gridview and objectDatasource
I am trying to bind this to a gridview..
var source = from p in allComments
select new { p.Img, p.Name, p.Comment };
GridView1.DataSource = source;
GridView1.DataBind();
...
2
votes
1answer
222 views
I changed ObjectDataSource's SelectMethod but it still returns old values on GridView
I have this two diferent classes to use in my ObjectDataSource:
"getColection" and "getLastColectionByUser"
This is my ObjectDataSource at aspx.
`
<asp:ObjectDataSource ...
2
votes
3answers
344 views
Visual Studio won't update properties of my Data Source
I am using my class "Invoice" as a Data Source. But after adding more properties to it, Visual Studio refuses to refresh the data source and I can't find the new properties in my data source.
Tried ...
2
votes
1answer
477 views
How to bind objects correctly with reportviewer?
I've been studying report viewer recently and I have one problem I cannot resolve...
I'm trying to bind data from a collection of objects (headers) where each object has a collection of child objects ...
2
votes
2answers
56 views
Optimal databasesystem for filters
I am building a website that implements filters that can be applied to a dataset. Allow me to explain these filters. In this case it will be a website with houses.
Number of rooms:
2 or less ( ...
2
votes
1answer
350 views
DotNetNuke: ObjectDataSource for GridView not being found
As a follow-up to a previous question about GridView and DotNetNuke, I'm having a little more trouble getting things to act correctly. Right now I have a simple GridView in my ascx file and I bind ...
2
votes
2answers
219 views
If ObjectDataSource isn't the answer for a large application, what is?
Quoting the answer of Andrew Hare on the This Question.
Object data sources are nice for small
projects but they do not scale well as
you are embedding data-layer
information in the UI layer ...
2
votes
4answers
2k views
ListView + ObjectDataSource SelectMethod called twice when EnableViewState=“false”
Note: This question has been completely modified now that I have a simpler example.
I have set up a sample page which only has a ListView and ObjectDataSource. The first time the page comes up ...
2
votes
3answers
537 views
Object data source select method returning nothing in code call
I have an ObjectDataSource with the proper SelectMethod and SelectParameters configured. The data source is bound to a grid view which successfully displays the data on page load.
What I need is the ...
2
votes
1answer
122 views
ods_Selected Row Count
I have the following bit of code that gives me the number of rows in a gridview bound to an object data source.
protected void odsProduct_Selected(object sender, ObjectDataSourceStatusEventArgs e)
...
2
votes
2answers
270 views
Resolving method overload among LINQ query methods
So, the context of this question is pretty specific, but I think there is a general C# question struggling to get out. :)
I have an ASP.NET Web Forms page with a GridView control bound to an ...
2
votes
2answers
1k views
Can't see or add Website Data Sources in RDLC report in ASP.NET MVC
In the RDLC report, in Design view in Visual Studio 2008, we don't see anything in the Website Data Sources tab and the button to Add New Data Source is grayed out. Only the Refresh button is ...
2
votes
2answers
496 views
ObjectDataSource Insert and Update methods error
I m developing asp.net 3.5 project.
When I want to Insert with DetailsView this error occured:
Error : ObjectDataSource 'ObjectDataSource2' could not find a non-generic method 'AddCity' that has ...
2
votes
5answers
1k views
Gridview Paging via ObjectDataSource: Why is maximumRows being set to -1?
So before I tried custom gridview paging via ObjectDataSource... I think I read every tutorial known to man just to be sure I got it. It didn't look like rocket science.
I've set the AllowPaging = ...
2
votes
2answers
63 views
Comparing 2 linq applications: Unexpected result
I drafted 2 ASP.NET applications using LINQ. One connects to MS SQL Server, another to some proprietary memory structure.
Both applications work with tables of 3 int fields, having 500 000 records ...
2
votes
3answers
491 views
How to fill an inner gridview based on outer gridview selection (ASP.NET/C#)
I have 2 GridViews, the InnerGridView is nested inside a TemplateField of my OuterGridView.
Each GridView has an ObjectDataSource (ODS). I want the InnerGridView to display data that is unique
to the ...
2
votes
1answer
474 views
How do I Prevent FormView from clearing user's entered Values after Insert Method has fired?
I have been struggling with getting FormViews to work the way Microsoft expects me to for about a day and have figure a bunch of great stuff out.
I can catch e.Exception and e.ReturnValue in the ...
2
votes
1answer
214 views
Does the ObjectDataSource just really suck?
I've never had the need to really ever use any of the .NET Data sources other than the SiteMap datasource however I'm trying to take advantage of the built in CRUD operations on a control which needs ...
2
votes
1answer
1k views
Optimize Pagination & Sorting with ObjectDataSource having EnableCaching = true
I'm using an ODS(ObjectDataSource) backed-up with a Linq-To-SQL class to populate Gridview on my page.
Considering the performance - I've disabled the Viewstate of the Gridview and enabled caching in ...