Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to scaffold framework for code-generation #82

Merged
merged 38 commits into from
Apr 22, 2023
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4e5a3ac
- initial project refactoring
MaceWindu Oct 9, 2022
5b7484a
move non-code files from project folder
MaceWindu Oct 9, 2022
23eebd0
ifdefs refactoring
MaceWindu Oct 9, 2022
eb8da3b
code refactoring/cleanup (in progress)
MaceWindu Oct 19, 2022
1e5ee82
refactoring
MaceWindu Oct 21, 2022
dfb86fa
refactor settings UI
MaceWindu Nov 6, 2022
16c04c5
update dependencies, fix build
MaceWindu Mar 25, 2023
e6cc65f
convert settings control tabs to usercontrol
MaceWindu Mar 25, 2023
83c2e48
fix configuration dialogs styling
MaceWindu Mar 25, 2023
d8772c6
implement #58, fixes, Access testing done
MaceWindu Mar 26, 2023
234f55e
sqlite tested
MaceWindu Mar 26, 2023
5516e32
- packages support
MaceWindu Apr 1, 2023
10dfe3d
sqlce (v5) fixes, v7 is not ready yet
MaceWindu Apr 1, 2023
e771ff1
sqlce v7 fixes
MaceWindu Apr 2, 2023
3fd654f
- sybase support
MaceWindu Apr 2, 2023
ceaf634
clickhouse support
MaceWindu Apr 2, 2023
cd07fef
sql server support (partially)
MaceWindu Apr 2, 2023
7ec1119
sql server support
MaceWindu Apr 8, 2023
62c1635
postgresql linqpad 5 fix
MaceWindu Apr 8, 2023
432854b
npgsql types rendering
MaceWindu Apr 9, 2023
8e0b5d4
mysql/mariadb support
MaceWindu Apr 9, 2023
cc78d54
oracle support
MaceWindu Apr 10, 2023
66ff88f
sap hana support
MaceWindu Apr 10, 2023
9314e5b
db2/informix support
MaceWindu Apr 10, 2023
9e8130f
cleanup
MaceWindu Apr 10, 2023
a54590f
pre-built context support
MaceWindu Apr 11, 2023
77d3e76
update dependencies
MaceWindu Apr 11, 2023
093abd1
code cleanup
MaceWindu Apr 11, 2023
9bcd385
finalize release notes
MaceWindu Apr 11, 2023
b935f02
Update Build/README.md
MaceWindu Apr 12, 2023
6856519
Update README.md
MaceWindu Apr 12, 2023
f1be439
Update release-notes.md
MaceWindu Apr 12, 2023
d882ab8
add clickhouse provider information to UI
MaceWindu Apr 12, 2023
00ed2cc
[clickhouse] add FixedString to string mapping option
MaceWindu Apr 12, 2023
da53028
add polysharp
MaceWindu Apr 12, 2023
b277a03
sql logger: don't log RecordsAffected when it is not set
MaceWindu Apr 15, 2023
9593c31
Database -> Database Type
MaceWindu Apr 15, 2023
a0b3754
dialect detection for sql server, oracle, pgsql
MaceWindu Apr 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
postgresql linqpad 5 fix
  • Loading branch information
MaceWindu committed Apr 8, 2023
commit 62c1635dfcf3a72435963eccb1fc4a05d12652d7
2 changes: 1 addition & 1 deletion Source/Drivers/DynamicLinqToDBDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ public override List<ExplorerItem> GetSchemaAndBuildAssembly(IConnectionInfo cxI
var coreAssemblies = GetCoreFxReferenceAssemblies(cxInfo);
var runtimeToken = _runtimeTokenExtractor.Match(coreAssemblies[0]).Groups["token"].Value;
#endif

var references = new List<MetadataReference>()
{
#if !LPX6
Expand All @@ -131,6 +130,7 @@ public override List<ExplorerItem> GetSchemaAndBuildAssembly(IConnectionInfo cxI
MetadataReference.CreateFromFile(typeof(PhysicalAddress) .Assembly.Location),
MetadataReference.CreateFromFile(typeof(BigInteger) .Assembly.Location),
MetadataReference.CreateFromFile(typeof(IAsyncDisposable) .Assembly.Location),
MetadataReference.CreateFromFile(Path.Combine(Path.GetDirectoryName(typeof(string).Assembly.Location), "netstandard.dll")),
#endif
MetadataReference.CreateFromFile(typeof(DataConnection). Assembly.Location),
MetadataReference.CreateFromFile(typeof(LINQPadDataConnection).Assembly.Location),
Expand Down