History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-48400
Type: Bug Bug
Status: Open Open
Priority: Critical Critical
Assignee: Sergey Coox
Reporter: Sergey Coox
Votes: 1
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

ASP ObjectDataSource::TypeName for complex types

Created: 31 Aug 07 13:39   Updated: 10 Sep 07 13:34
Component/s: Language - ASP.NET
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown


 Description  « Hide
<asp:ObjectDataSource runat="server"  TypeName="Data.Bar`1[[Data.Foo]]"   SelectMethod="GetData"/>
using System;
using System.Data;

namespace Data
{
    public class Foo{}

    public class Bar<T>
    {
        public DataSet GetData()
        {
            throw new NotImplementedException();
        }

        public DataSet GetData(int ID)
        {
            throw new NotImplementedException();
        }
    } 
}


 All   Comments   Work Log   Change History      Sort Order:

Sergey Coox - 10 Sep 07 13:34
<asp:ObjectDataSource ID="dsJobBrokenRules" runat="server" SelectMethod="GetBrokenRules"
           TypeName="Eca.ElecsaMegger.WebGui.CertUploadResponse+JobBrokenRulesDataSource" >