SUBSONIC 3.0.0.3 Subsonic.Query.SqlQuery

Posted by dancingn27 on Stack Overflow See other posts from Stack Overflow or by dancingn27
Published on 2010-03-31T15:51:11Z Indexed on 2010/03/31 15:53 UTC
Read the original article Hit count: 908

Filed under:
|
|

New to subsonic and having issues figuring it out. I am simply just trying to do a distinct search and any documentation I find is telling me to use the class/method

SubSonic.SqlQuery

Though I am finding out that since I am using the newest version, a lot of the documentation I am finding does not apply. For example, I am getting this query working beautifully using Subsonic.Query.SqlQuery though there is NO distinct method hanging off of it as suggested by what I have seen. Please advice!

    SubSonic.Query.SqlQuery query =
        brickDB.SelectColumns(new string[] { "DomainName" }).From<Web.Data.DB.WebLog>()
        .Where(Web.Data.DB.WebLogTable.DomainNameColumn).IsNotNull();  -> No distinct hanging off of From<>()....

© Stack Overflow or respective owner

Related posts about subsonic

Related posts about subsonic3