Skip to content

Commit

Permalink
Merge pull request #403 from smoothdeveloper/ISqlCommand-remains-unde…
Browse files Browse the repository at this point in the history
…r-fsharpdatasqlclient

move ISqlCommand outside of Internals namespace
  • Loading branch information
smoothdeveloper authored Dec 18, 2020
2 parents 4bdac58 + 8cf61dd commit 0bc5129
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions src/SqlClient/ISqlCommand.fs
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
namespace FSharp.Data.SqlClient.Internals
namespace FSharp.Data.SqlClient

open System
open System.Data
open System.Data.SqlClient
open System.Reflection
open FSharp.Data.SqlClient
open FSharp.Data.SqlClient.Internals
open System.Linq


[<CompilerMessageAttribute("This API supports the FSharp.Data.SqlClient infrastructure and is not intended to be used directly from your code.", 101, IsHidden = true)>]
type ISqlCommand =
Expand All @@ -21,6 +14,17 @@ type ISqlCommand =

abstract Raw: SqlCommand with get


namespace FSharp.Data.SqlClient.Internals

open System
open System.Data
open System.Data.SqlClient
open System.Reflection
open FSharp.Data.SqlClient
open FSharp.Data.SqlClient.Internals
open System.Linq

module Seq =

let internal toOption source =
Expand Down Expand Up @@ -377,8 +381,8 @@ open System
open System.Data
[<Obsolete("use 'FSharp.Data.SqlClient.Internals.``ISqlCommand Implementation``' instead");AutoOpen>]
type ``ISqlCommand Implementation`` = FSharp.Data.SqlClient.Internals.``ISqlCommand Implementation``
[<Obsolete("use 'FSharp.Data.SqlClient.Internals.ISqlCommand' instead");AutoOpen>]
type ISqlCommand = FSharp.Data.SqlClient.Internals.ISqlCommand
[<Obsolete("use 'FSharp.Data.SqlClient.ISqlCommand' instead");AutoOpen>]
type ISqlCommand = FSharp.Data.SqlClient.ISqlCommand
[<Obsolete("use 'FSharp.Data.SqlClient.Internals.DesignTimeConfig' instead");AutoOpen>]
type DesignTimeConfig = FSharp.Data.SqlClient.Internals.DesignTimeConfig
#endif

0 comments on commit 0bc5129

Please sign in to comment.