fix: fix database error when adding filtered data
Command option set when error was occuring: netxml2kml -di <input_file> -q '<sql_query>'
This commit is contained in:
parent
93cf58b356
commit
f22b812060
@ -69,7 +69,8 @@ public static class CliOptionsHandlers
|
|||||||
|
|
||||||
private static string GetKmlString(IEnumerable<WirelessNetwork> wirelessNetworks,
|
private static string GetKmlString(IEnumerable<WirelessNetwork> wirelessNetworks,
|
||||||
string name = "WiFi Map",
|
string name = "WiFi Map",
|
||||||
string description = $"Autogenerated by a tool.\nhttps://github.com/cuqmbr/netxml2kml")
|
string description = $"Autogenerated by a tool." +
|
||||||
|
$"\nhttps://github.com/cuqmbr/netxml2kml")
|
||||||
{
|
{
|
||||||
var kmlTree = new XDocument();
|
var kmlTree = new XDocument();
|
||||||
|
|
||||||
@ -162,6 +163,7 @@ public static class CliOptionsHandlers
|
|||||||
foreach (var wirelessConnection in wirelessNetwork.WirelessConnections)
|
foreach (var wirelessConnection in wirelessNetwork.WirelessConnections)
|
||||||
{
|
{
|
||||||
var client = wirelessConnection.WirelessClient;
|
var client = wirelessConnection.WirelessClient;
|
||||||
|
client.WirelessConnections = null!;
|
||||||
|
|
||||||
// Add new client to the DB if it is not present
|
// Add new client to the DB if it is not present
|
||||||
if (!dbContext.WirelessClients.Any(wc =>
|
if (!dbContext.WirelessClients.Any(wc =>
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.8" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.8" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.8" />
|
||||||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user