Datatables using class Query

Datatables using class Query

suwarjono@daunbiru.comsuwarjono@daunbiru.com Posts: 10Questions: 2Answers: 0

Hi All,

i'm new to use datatables with .net. If all you guess has some examples to use query class, please share and let us learn how to use it.

Replies

  • allanallan Posts: 61,887Questions: 1Answers: 10,142 Site admin

    I'm afraid I don't really understand the question. What Query class?

    The .NET download package for Editor includes a number of Examples showing how the Editor server-side libraries for .NET can be used.

    Allan

  • suwarjono@daunbiru.comsuwarjono@daunbiru.com Posts: 10Questions: 2Answers: 0

    sorry, what i'm looking for is ther any something query like
    .Query("Select * from database where tabel1 = params")

    is datatable editor available for this?

    thanks

  • allanallan Posts: 61,887Questions: 1Answers: 10,142 Site admin

    This is just a standalone query? If so, then yes, that can be done with the Database class.

    If you want to use Editor with your query, then there isn't a way to do that at the moment - Editor will build its own queries based on how you configure it.

    Allan

  • suwarjono@daunbiru.comsuwarjono@daunbiru.com Posts: 10Questions: 2Answers: 0

    hi Allan,

    thanks for your reply.. is there any example for this??

  • allanallan Posts: 61,887Questions: 1Answers: 10,142 Site admin

    You could just use:

    db.Select( "table1", "*" );
    

    There isn't any live examples of that.

This discussion has been closed.